Mathematic Proof and Logical Reasoning

I’ve mentioned that one of the courses I’m following currently is Keith Devlin’s Introduction to Mathematical Thinking on Coursera. Maths is something I was never interested in and never considered myself to be ‘good’ at (hence this blog’s tongue-in-cheek name). Getting yourself out of a mentality where you’ve convinced yourself you’re weak at something or…

September breakdown

Completed: 80/140 pages of Code Mathematics 1 textbook (The first of 6 *weep weep*) 3 units of Udacity’s Introduction to Computer Science course (Including optional assignments) Began Introduction to Mathematical Thinking on Coursera (Ongoing) Heckuva lot of Khan Academy Upcoming: More maths. Always more maths. Forging ever onwards with the winning combination of Introduction to…

Python: Check if symmetric

The second challenge of Lesson 3: Problem Set (Optional) of Udacity’s Introduction to Computer Science. I think this is a relatively good solution and it didn’t take long. The process is similar to the exercise in my previous post, where we check whether the solution of a simple sudoku game is correct. However, this exercise…

Maths: Transforming functions

You can transform the curve of a function f(x) by simple translations of the form: Shoving the whole curve left, right, up or down along the axes: f(x+a) = subtract a from the horizontal / f(x-a) = add a to the horizontal f(x)+a = add a to the vertical / f(x)-a = subtract a from…