TAGS: math just for fun

Fifth Generic Trick for Squaring All Numbers

Ok so for this one, no proof (at least not yet). But, we will demonstrate by example.

Squaring 30 \bold{30} s

Let’s begin here.

Number Square
302 30^2 900900
312 31^2 961961
322 32^2 10241024
332 33^2 10891089
342 34^2 11561156
352 35^2 12251225
362 36^2 12961296
392 39^2 15211521

So far, there’s no real pattern here. But! What if we decomposed our numbers a bit? eg:

Number Square Left Middle Right
302 30^2 900900 (blank) (blank) (blank)
312 31^2 961961 9 9 6 6 1 1
322 32^2 10241024 9 9 12 12 4 4
332 33^2 10891089 9 9 18 18 9 9
342 34^2 11561156 9 9 24 24 16 16
352 35^2 12251225 9 9 30 30 24 24
362 36^2 12961296 9 9 36 36 36 36
392 39^2 15211521 9 9 54 54 81 81

Ok, bear with me here. The important parts are the middle and right columns. Suppose our number ( 30,31,32,,39 30, 31, 32, …, 39 ) is expressed as: 10a+n 10a + n where a=3 a = 3 and n=0,1,2,3,9 n = 0,1,2,3…,9

Then, it is clear that:

If we look specifically at:

Number Square Left Middle Right
312 31^2 961961 9 9 6 6 1 1

we notice that this works itself out quite nicely! 312=961 31^2 = 961 and our left, middle and right columns concatenate to this value as well. Great! But what about the rest…?

As it turns out, they also work provided we move any “extra” digit over. For instance, consider:

Number Square Left Middle Right
322 32^2 10241024 9 9 12 12 4 4

Here, middle is 12 12 . If we “carry” the 11 from 1212 over to the left column, we end up with:

Number Square Left Middle Right
322 32^2 10241024 10 10 2 2 4 4

As we can clearly see, this results in 1024 1024 which is in fact 322 32^2 . This principle applies across the board, for instance, consider:

Number Square Left Middle Right
362 36^2 12961296 9 9 36 36 36 36

Here, we first carry over the 3 3 in right over to middle.

Number Square Left Middle Right
362 36^2 12961296 9 9 39 39 6 6

Then, we do it again, carrying over 3 3 in middle to left:

Number Square Left Middle Right
362 36^2 12961296 12 12 9 9 6 6

As we can clearly see, this results in 1296 1296 which is in fact 362 36^2 .

Generically

Ok so let’s generalize this (we already kinda did). Given some number 10a+n 10a + n where a,n a, n are natural numbers:

Number Left Middle Right
(10a+n)2 (10a+n)^2 a2 a^2 2an 2an n2 n^2

And then ofc, we have to carry over any values in middle and right that are not digits.

Ex: 782\bold{78}^2

Here:

Number Square Left Middle Right
782 78^2 60846084 49 49 112 112 64 64

We first carry over from the right

Number Square Left Middle Right
782 78^2 60846084 49 49 118 118 4 4

Ok and now we do so again from middle:

Number Square Left Middle Right
782 78^2 60846084 60 60 8 8 4 4

Tada! Again, doesn’t work great for larger numbers but for squaring anything in the 20 20 s and 30 30 s, this is probably a very quick solution for solving mentally.

Share