There's a Brazilian 11 year old that allegedly developed an original method of finding natural square roots and is being marketed as some sort of genius for it. The method is even being called "the Julia Regression" by national media. It is sort of impressive for a human that age to notice this kind of relations, but the method per se seems rather dull to me:
N is given to be the square of some unknown natural number a, which we want to find.
Guess some natural number b to be this number.
Now compare b² with N
If (b² = N), then it's done
If (b² < N), you recursively sum b with its successor b+1 to b², that is:
1st try: b² + (b + (b+1))
2nd try: b² + (b + (b+1)) + ((b+1) + (b+2))
3rd try : b² + (b + (b+1)) + ((b+1) + (b+2)) + ((b+2) + (b+3))
Until you eventually find it
If (b² > N), you do the same but subtracting (b + (b - 1)) from b²
1st try: b² - (b + (b-1))
2nd try: b² - (b + (b-1)) - ((b-1) + (b-2))
3rd try : b² - (b + (b-1)) - ((b-1) + (b-2)) - ((b-2) - (b-3))
Until you eventually find it
Example: For the number 256, I'll guess 13. The square is 169. Now I'll sum: 169+13+14 = 196. Still not the result.
196+14+15 = 225
225+15+16 = 256
That's it, you get it
Explanation: this comes from the trivial observation of the manipulation of the product:
A x A = A²
A x (A+1) = A² + A
(A+1) x (A+1) = A² + (A) + (A +1) = (A+1)²
And eventually you run through all the integers. Same with subtraction. What do you guys think? Source from the main newspaper of the country:

This is not a new method. It actually comes from:
$$(a-b)(a+b)=a^2-b^2$$
For consecutive perfect squares, it is $a-b=1$.
For instance,
$$196 - 169 = (14-13)(14+13)$$ $$196 - 169 = (14+13)$$ $$196 = 169+14+13$$
In general:
$$a^2 = b^2+a+b$$
We know that $a=b+1$: $$a^2 = b^2+(b+1)+b$$
But if an 11 year old kid noticed this she must be pretty talented.
Why do I say it is not a new discovery? Because see Fermat Factorization method that uses same property for factoring integers.
R.I.P Fermat (1665)