$x^2 = (x-1)(x+1)$.
Does anybody know if this is true for any numbers (specifically the larger the better)?
Because: $256^2 = 255 \cdot 257 + 1$
It's very very close, just an interesting thing I noticed when dealing with 2-byte integers in computer programming.
By the distributive property, $$(x-1)(x+1)=(x-1)\cdot x+(x-1)\cdot1=x^2-x+x-1=x^2-1,$$ which means that it is false for all integers $x$.
In general, we have $$(x-y)(x+y)=x^2-y^2.$$ Yours is the case $y=1$.