Hacker News new | ask | show | jobs
by RHSeeger 1418 days ago
> So the sequence of operations is: adding 1 to a number, addition, multiplication, exponentiation,

As I was reading this, I was visualizing it as geometry. - Incrementation as a line, where each "step" moves you along that line - Addition as a 2d graph, where each point along the x axis increments by 1, and each point along the y axis indicates "how many times" - Multiplication as a 3d graph, in the same pattern - Exponentiation - it fell apart because I couldn't visualize it anymore.

Not particularly insightful, I guess, but I found it interesting that it seemed "automatic" to me to view it this way.

2 comments

I think this is very insightful. Math is designed to tackle problems which are challenging/not possible to visualize. So to get good at symbolic mathematics at some point you need to let go of needing to visualize everything. To get a bit more perspective one could contrast symbolic math with geometry which is built on visualization.
You can visualise incrementation as a single step along a line, addition as a step of any length along the line.

Multiplication: the formula for area of a rectangle is "length times height", so IMHO now this - "a * b" is best visualised as 2d. Or if you like, "m lines of length n", visualised as a stack of lines.

Exponentiation covers "to the power of 2" (area of a 2d object) "to the power of 3" (volume of a 3d cube) and beyond, so now we've run out of graph dimensions.

I think what we can take from this, is that when going from first operation to second, second to third etc, the rate of change is not constant, it is increasing. Since the sequence is "no extra dimensions, one extra dimension, all the extra dimensions"