Download An equation that can`t be solved with algebra

Survey
yes no Was this document useful for you?
   Thank you for your participation!

* Your assessment is very important for improving the workof artificial intelligence, which forms the content of this project

Document related concepts

Large numbers wikipedia , lookup

History of mathematical notation wikipedia , lookup

List of important publications in mathematics wikipedia , lookup

Mathematics of radio engineering wikipedia , lookup

Addition wikipedia , lookup

Line (geometry) wikipedia , lookup

Recurrence relation wikipedia , lookup

Elementary algebra wikipedia , lookup

Elementary mathematics wikipedia , lookup

Algebra wikipedia , lookup

System of polynomial equations wikipedia , lookup

Partial differential equation wikipedia , lookup

History of algebra wikipedia , lookup

Transcript
An equation that can’t be solved with algebra
The equation 2^z = z+4 looks pretty easy. But it turns out that it can’t be solved by usual algebraic
methods.
One thing to do is just start plugging in different numbers on the left and right hand sides of the
equation until you get the two sides to be approximately equal. This is straightforward, but tedious.
The good news is that computers are very good at doing this sort of thing. Here’s how to do it in
Maple.
> solve( 2^x=x+4,x);
 1


1

LambertW − ln(2 ) + 4 ln(2 ) LambertW -1, − ln(2 ) + 4 ln(2 )
 16


16

−
,−
ln(2 )
ln(2 )
> evalf(%);
-3.934601635, 2.756215304
In the first line, Maple solved the equation but left it in some weird symbolic form. What we’d really
like to know is the actual numbers that make the equation true. To convert to numbers, I used the
evalf function. eval stands for EVALuate as a Floating point. (A floating point number is just a
decimal number.) The "%" is shorthand for whatever Maple most recently output. It’s like "Ans" on
your calculator.
A more illuminating method for solving this is to just plot the two functions and see where they
intersect.
> plot( {2^x, x+4},x=-5..5);
30
25
20
15
10
5
–4
–2
0
2
x
4
One can see that the two lines intersect around 2.8 and -3.9. This agrees nicely with the numerical
results we obtained above.
The main point here is that there are equations (and later integrals) that make perferctly good sense
and which have solutions, but that those solutions can’t always be obtained by algebra.
>