The Art of Solving problems

In the following example, professor Alfred explains how we can save time by using the “poet’s” way, an elegant method, instead of what we call “Peasant’s” method.
Most of us hurry up when faced with a problem to solve. While we may eventually find a solution, it is always useful to make sure that there is no other shorter way to solve the problem before we dive into heavy calculations.

To better understand this difference, let’s consider the following problem:
“The sum of two numbers is 2. The product of the same two numbers is 3.
Find the sum of the reciprocals of these two numbers”
We can see that this problem does not ask us to find the 2 numbers.

The “Peasant’s way”

Let x and y be the 2 numbers.
\begin{cases}x+y=2\; (1)\\xy=3 \;(2)\end{cases}
From (1) we have: y=2-x
In 2 by substitution:
x(2-x)=3 (3)
2x-x^2=3
x^2-2x+3=0
\Delta=(-2)^2-4 \times 1 \times 3=4-12 =-8
There are no real roots but let’s ramp it up to the complex number sysem:
\Delta=8i^2
\sqrt{\Delta}=2i\sqrt{2}

x_1=\frac{2+2i\sqrt{2} }{2}=1+i\sqrt{2}

The same way we find:
x_2=1-i\sqrt{2}
From (3):
Let’s use x_1

y&=2-x_1=2-(1+i\sqrt{2})=2-1-i\sqrt{2}=1-i\sqrt{2}

This is the conjugate of the complex x_1

We verify:
Sum:
x_1+y=1+i\sqrt{2}+1-i\sqrt{2}
The imaginary parts cancel out:
x_1+y=2
The product:

x_1=(1+i\sqrt{2})(1-i\sqrt{2})=1^2-i^2(\sqrt{2})^2=1+2\\&=3


Now let’s answer the question, the sum of the reciprocals:

\frac{1}{x}+ \frac{1}{y}=\frac{1}{1+i\sqrt{2}}+ \frac{1}{1-i\sqrt{2}}

\frac{1}{x}+ \frac{1}{y}=\frac{1-i\sqrt{2}+1+i\sqrt{2}}{(1+i\sqrt{2})\cdot (1-i\sqrt{2})}=\frac{2}{3}

The answer
We have wasted time calculating the 2 numbers and we were even pushed to use the complex number system to solve a small problem that did not need all this effort. We could even have made mistakes.

The “poet’s” way:

Rarely used way but efficient, short and time saving.
From the prompt we can pull:
\begin{cases}x+y=2\; (1)\\xy=3 \;(2)\end{cases}
Final prompt item:
\frac{1}{x}+\frac{1}{y} is to be found.
But:
\frac{1}{x}+\frac{1}{y}=\frac{x+y}{xy}
But from 1 ans 2:
We can plug in:
\frac{x+y}{xy}=\frac{2}{3}
We did not need any advanced concept to solve this.

Conclusion:

I expect students to use the concepts of this article every time they have to solve a problem. There maybe a huge tme saving approach hidden into some prompts.


Happy solving.

Print Friendly, PDF & Email

Be the first to comment

Leave a Reply

Your email address will not be published.


*