Conclusion

Hi,
    sorry but I don't believe in prefaces.
Every time I read one I get kind of confused about the book. I don't find them very informative, because the good stuff is in the book, and since I have not read it yet, the author cannot really tell me much, that I would understand. A preface feels to me like a trailer for a movie: it could easily give away too much, spoil the good parts of the movie, or if it is off, weird, it can make me want NOT to see the movie.
Anyways... I personally tend to skip the preface in a new book...
So here is what I want to do for this book instead: a nice, solid conclusion, to go over what was my plan for the book. And the good thing about a conclusion is that YOU can follow it, because you have already finished the actual book!

I wrote this book with three main themes in mind:

Allow me to elaborate a bit.

Syntax VS Semantics

Everything in math can be written in multiple ways. It is such an evident and central thing that I was surprised when I started looking back and I realized that I was not told about it until my master. Strange right?!
Rewriting stuff to look like other stuff is a fundamental part of what a mathematician does (and also a computer programmer, by the way), and yet it is usually only discussed in advanced math courses (or in fairly advanced and theoretical programming courses, in connection for instance with rewriting systems or code refactoring).

In this book I kept coming back to the idea that expressing the same thing in multiple ways is beneficial, and often reveals how to solve problems.
It was an eureka moment when I realized that even a basic thing as a whole number has a notation and can be written in right and wrong ways. For example a number like 27 is really a linear combination of 10 and 1, so it can be written as 2*10+7*1, or as 27 using boxes. These are the right ways to write 27, but as soon as I am aware that 27 is BUILT by 2 and 7 and powers of ten, I can start looking at alternative ways to write it, like: 1*10+17*1, which is 117. This is a transformation that alters the looks but not the meaning of my number. Interestingly, these kinds of transformations are more visible with imperial units than with our usual base 10... When you work with yards and feet you are always at risk of writing the wrong amount of some unit, and have to correct your numbers, AKA transform your representation back to normal form.
We found normal forms and meaning-preserving transformations everywhere in this book.
For example a fraction is in normal form when the two numbers (above and below the fraction line) are whole, positive and co-primes; so a fraction like 24 is not in normal form, because both numbers can be divide by 2 and still be whole. The normal form for that fraction is 12. It is also possible to zoom the fraction, making the two numbers larger, without altering the meaning of the fraction: 1020 is the same fraction, only zoomed by 10. Zooming and simplifying are opposite operations, and are both useful when preparing or cleaning up a fraction in between operations. But I found surprising that zooming is not usually discussed in school math textbooks, even if it helps a lot when explaining things like addition of two fractions with different denominator.
We even found that a linear equation has a normal form too, and that its normal form is the solution to the equation! So x=5 is an equation in normal form, but the normal form here is so clear and simple, that you can read the solution out of it, directly without calculations. And that is cool. Solving an equation becomes a matter of using (meaning-preserving) transformations to rewrite the syntax of the equation step-by-step, until it becomes its own solution (AKA it is in normal form). I think that this idea of incrementally moving something towards its normal form, is very powerful and appealing. And it is not my invention: it is in fact precisely the way linear algebra textbooks explain the process of row reduction to bring a system of linear equations to the so called reduced row echelon form... Of course linear algebra is a much more complex subject than school math, but why not taking advantage of the highly visual ways of explaining certain solving techniques?!
Finally, in chapter 7 we found that looking at geometrical structures from different points of views is very beneficial, and it helped us in defining formulas to count parts or measure properties of those structures. The same square of dots was cut in different ways, and almost any time we got insights from the resulting subdivisions.

Linear combinations

I believe that a weighted sum is one the most important and common concept in math, but too often this fact is not acknowledged, especially in elementary math courses. Perhaps it is more evident in stuff like linear algebra, where a weighted sum is usually called a linear combination... I find that a weighted sum is also a very direct thing to "see": on a balance scale, when reasoning about money (with all the different coins to combine to reach a certain amount), even in the way the numbers are built in the decimal system (on an abacus for instance). Polynomials, one of the central pillars of school math, are a linear combination of powers of x and some weights.
In this book we encountered linear combinations...

Boxes

In many places in the book we got stuck because the numbers (or math entities) we wanted to work with where too complex to SEE. Often the solution was to expand our notations, make things more explicit and more visible by adding a bit of structure. For example to keep apples and bananas separated, but together, we came out with the rather simple solution of having two boxes, one for each kind of fruit.
At some point we needed to keep track of sheep, owned and owed, and for that we were forced to extend the whole numbers to include negative numbers. One of the solutions for that was also to have two boxes, a black and a red one, and redefine the addition to work with positive and negative numbers.
I find that many of the properties of math things and operations become more clear using a concrete, mechanical representation. Take geometry on paper: the ruler and the compass have their own limitations and ways of working, that helped Euclid working out geometrical theorems.
In the book I tried to use boxes as a mechanical representation of information about numbers and other math things... In computer science box-like things are called tuples, a generalization of "couples, triplets, quadruplets, ...", and they are very useful to define what data is in a program and how it should be changed by various operations. (One of the most diffused programming paradigm, Object Oriented Programming, is largely based on custom definitions of tuples and their operations)
We encountered boxes more or less in a chapters, in many different contexts. For instance:

And as far as possible all operations in the book (involving entities like numbers, or fractions, or linear combinations) were defined on boxes, to make them more concrete, more mechanical, in the hope to better see how they work.



Thanks for reading this far,
    Andrea.


TOP