Skip to main content
reformatted a string of equalities
Source Link
marty cohen
  • 110.8k
  • 12
  • 89
  • 186

I would like to square a three digit number in my head. Now I know that the formula is

$$ ( X + r ) ( X - r ) + r^2 = X^2 - rX + rX - r^2 + r^2 = X^2 $$ Where $\,r\,$ is a number such that $\,X + r\,$ is divisible by $10$ and/or $100$

Now the problem is that, I would like to first figure out whether finding the $r$ such that the $3$ digit number is divisible by $100$ or $10$ would be more efficient.

If I choose $r < 10$ then the $\,( X + r ) ( X - r )\,$ becomes quite unpleasant. If I choose $r < 100$ then the $r$ itself will have to be broken into pieces such that $$( X + r ) ( X - r ) + [ ( r + j ) ( r - j ) + j^2 ] = ( X + r ) ( X - r ) + ( r^2 - jr + jr - j^2 + j^2 ) = $$ $$ =( X + r ) ( X - r ) + r^2 = X^2 - rX + rX - r^2 + r^2 = X^2$$

$\begin{array}\\ ( X + r ) ( X - r ) + [ ( r + j ) ( r - j ) + j^2 ] &= ( X + r ) ( X - r ) + ( r^2 - jr + jr - j^2 + j^2 )\\ &=( X + r ) ( X - r ) + r^2\\ &= X^2 - rX + rX - r^2 + r^2\\ & = X^2\\ \end{array} $

This kind of yields recursive solution where any number squared works. The job is much more easier, but the person has to memorize more numbers while continuing to do more math.

So which method would you recomend? Or if you would have some other method I would love to hear it.

If you choose recursive method how do you memorize numbers in an efficient way without having numbers collide in your brain?

Thanks to anyone for their response, and sorry if tags are off, I am unsure which tag fits my question.

I would like to square a three digit number in my head. Now I know that the formula is

$$ ( X + r ) ( X - r ) + r^2 = X^2 - rX + rX - r^2 + r^2 = X^2 $$ Where $\,r\,$ is a number such that $\,X + r\,$ is divisible by $10$ and/or $100$

Now the problem is that, I would like to first figure out whether finding the $r$ such that the $3$ digit number is divisible by $100$ or $10$ would be more efficient.

If I choose $r < 10$ then the $\,( X + r ) ( X - r )\,$ becomes quite unpleasant. If I choose $r < 100$ then the $r$ itself will have to be broken into pieces such that $$( X + r ) ( X - r ) + [ ( r + j ) ( r - j ) + j^2 ] = ( X + r ) ( X - r ) + ( r^2 - jr + jr - j^2 + j^2 ) = $$ $$ =( X + r ) ( X - r ) + r^2 = X^2 - rX + rX - r^2 + r^2 = X^2$$

This kind of yields recursive solution where any number squared works. The job is much more easier, but the person has to memorize more numbers while continuing to do more math.

So which method would you recomend? Or if you would have some other method I would love to hear it.

If you choose recursive method how do you memorize numbers in an efficient way without having numbers collide in your brain?

Thanks to anyone for their response, and sorry if tags are off, I am unsure which tag fits my question.

I would like to square a three digit number in my head. Now I know that the formula is

$$ ( X + r ) ( X - r ) + r^2 = X^2 - rX + rX - r^2 + r^2 = X^2 $$ Where $\,r\,$ is a number such that $\,X + r\,$ is divisible by $10$ and/or $100$

Now the problem is that, I would like to first figure out whether finding the $r$ such that the $3$ digit number is divisible by $100$ or $10$ would be more efficient.

If I choose $r < 10$ then the $\,( X + r ) ( X - r )\,$ becomes quite unpleasant. If I choose $r < 100$ then the $r$ itself will have to be broken into pieces such that

$\begin{array}\\ ( X + r ) ( X - r ) + [ ( r + j ) ( r - j ) + j^2 ] &= ( X + r ) ( X - r ) + ( r^2 - jr + jr - j^2 + j^2 )\\ &=( X + r ) ( X - r ) + r^2\\ &= X^2 - rX + rX - r^2 + r^2\\ & = X^2\\ \end{array} $

This kind of yields recursive solution where any number squared works. The job is much more easier, but the person has to memorize more numbers while continuing to do more math.

So which method would you recomend? Or if you would have some other method I would love to hear it.

If you choose recursive method how do you memorize numbers in an efficient way without having numbers collide in your brain?

Thanks to anyone for their response, and sorry if tags are off, I am unsure which tag fits my question.

removed blank line so equation would be TeXed
Source Link
Matthew Conroy
  • 11.4k
  • 4
  • 35
  • 36

I would like to square a three digit number in my head. Now I know that the formula is

$$ ( X + r ) ( X - r ) + r^2 = X^2 - rX + rX - r^2 + r^2 = X^2 $$ Where $\,r\,$ is a number such that $\,X + r\,$ is divisible by $10$ and/or $100$

Now the problem is that, I would like to first figure out whether finding the $r$ such that the $3$ digit number is divisible by $100$ or $10$ would be more efficient.

If I choose $r < 10$ then the $\,( X + r ) ( X - r )\,$ becomes quite unpleasant. If I choose $r < 100$ then the $r$ itself will have to be broken into pieces such that $$( X + r ) ( X - r ) + [ ( r + j ) ( r - j ) + j^2 ] = ( X + r ) ( X - r ) + ( r^2 - jr + jr - j^2 + j^2 ) = $$ $$ =( X + r ) ( X - r ) + r^2 = X^2 - rX + rX - r^2 + r^2 = X^2$$

$$( X + r ) ( X - r ) + [ ( r + j ) ( r - j ) + j^2 ] = ( X + r ) ( X - r ) + ( r^2 - jr + jr - j^2 + j^2 ) = $$ $$ =( X + r ) ( X - r ) + r^2 = X^2 - rX + rX - r^2 + r^2 = X^2$$ 

This kind of yields recursive solution where any number squared works. The job is much more easier, but the person has to memorize more numbers while continuing to do more math.

So which method would you recomend? Or if you would have some other method I would love to hear it.

If you choose recursive method how do you memorize numbers in an efficient way without having numbers collide in your brain?

Thanks to anyone for their response, and sorry if tags are off, I am unsure which tag fits my question.

I would like to square a three digit number in my head. Now I know that the formula is

$$ ( X + r ) ( X - r ) + r^2 = X^2 - rX + rX - r^2 + r^2 = X^2 $$ Where $\,r\,$ is a number such that $\,X + r\,$ is divisible by $10$ and/or $100$

Now the problem is that, I would like to first figure out whether finding the $r$ such that the $3$ digit number is divisible by $100$ or $10$ would be more efficient.

If I choose $r < 10$ then the $\,( X + r ) ( X - r )\,$ becomes quite unpleasant. If I choose $r < 100$ then the $r$ itself will have to be broken into pieces such that

$$( X + r ) ( X - r ) + [ ( r + j ) ( r - j ) + j^2 ] = ( X + r ) ( X - r ) + ( r^2 - jr + jr - j^2 + j^2 ) = $$ $$ =( X + r ) ( X - r ) + r^2 = X^2 - rX + rX - r^2 + r^2 = X^2$$ 

This kind of yields recursive solution where any number squared works. The job is much more easier, but the person has to memorize more numbers while continuing to do more math.

So which method would you recomend? Or if you would have some other method I would love to hear it.

If you choose recursive method how do you memorize numbers in an efficient way without having numbers collide in your brain?

Thanks to anyone for their response, and sorry if tags are off, I am unsure which tag fits my question.

I would like to square a three digit number in my head. Now I know that the formula is

$$ ( X + r ) ( X - r ) + r^2 = X^2 - rX + rX - r^2 + r^2 = X^2 $$ Where $\,r\,$ is a number such that $\,X + r\,$ is divisible by $10$ and/or $100$

Now the problem is that, I would like to first figure out whether finding the $r$ such that the $3$ digit number is divisible by $100$ or $10$ would be more efficient.

If I choose $r < 10$ then the $\,( X + r ) ( X - r )\,$ becomes quite unpleasant. If I choose $r < 100$ then the $r$ itself will have to be broken into pieces such that $$( X + r ) ( X - r ) + [ ( r + j ) ( r - j ) + j^2 ] = ( X + r ) ( X - r ) + ( r^2 - jr + jr - j^2 + j^2 ) = $$ $$ =( X + r ) ( X - r ) + r^2 = X^2 - rX + rX - r^2 + r^2 = X^2$$

This kind of yields recursive solution where any number squared works. The job is much more easier, but the person has to memorize more numbers while continuing to do more math.

So which method would you recomend? Or if you would have some other method I would love to hear it.

If you choose recursive method how do you memorize numbers in an efficient way without having numbers collide in your brain?

Thanks to anyone for their response, and sorry if tags are off, I am unsure which tag fits my question.

edited tags
Link
Gerry Myerson
  • 187.8k
  • 14
  • 237
  • 410
added 32 characters in body
Source Link
DonAntonio
  • 215.4k
  • 19
  • 143
  • 291
Loading
Source Link
Quillion
  • 195
  • 1
  • 3
  • 8
Loading