I don't know maths but I've made up a method of finding next 'square' of numbers. Have a look at this:
- 12 = 02 + 1
- 22 = 12 + 3
- 32 = 22 + 5
- 42 = 32 + 7
- 52 = 42 + 9
- 62 = 52 + 11
- 72 = 62 + 13
- 82 = 72 + 15
- 92 = 82 + 17
- 102 = 92 + 19 and so forth.
When you add the square of previous number to an odd number, it gives you the square of the next number.
I cannot explain it further as I have no knowledge about maths.
I would like to know whether it has existed or not. Does this process have a name?
I hope it's not off-topic. If it is not, please edit the tags and title in order to avoid duplicates.
Say $n$ is the number you are squaring on the left. I will continuously use the example of $n=5$ that you have. So on the left, we have $n^2=5^2$. On the right you have the sum of two numbers, $(n-1)^2$ and $2n-1$, e.g. $4^2$ and $9$. Then what you have on each line is $$ n^2= (n-1)^2 + (2n-1) $$ But you can see this must always be equal just by expanding the right side $$ (n-1)^2 + (2n-1) = n^2-2n+1 + 2n-1= n^2 $$
I know of no name for this exact process, and it is unlikely to have a name for this works with any way of expanding out a polynomial without making a change to the value so you can create an infinite number of such similar expressions. The typical way such a thing would earn a name is if it had an interesting relationship/interaction with something else in Mathematics. While this may be the case, again, I do not know of the existence of such a relationship.