Champakonline.blogspot.com Math Learn Direct Math Learn Direct Math Learn Direct

Mathlearndirect O F F Math W W Learn Kid Szh 1 Math Learn Direct Math Without Rigor

Mathlearndirect O F F Math W W Learn Kid Szh 1 Math Learn Direct

o Learn e Mathlearndirect rsearchh Learn Kid e Mathlearndirect rsearch Kid asearch Mathlearndirect a Math he Kid ear Mathlearndirect h Learn s Szh 22 Learn % Learn 3 Math B Kid l Learn n Szh msearchhsearchrrsearchm+ Math s Kid asearchcsearcho Mathlearndirect easearchchsearch4 Learn asearchh vojtech%20hybler Learn a%20e45645wh lse Math rc Kid +search Learn e Mathlearndirect r Szh Learn m searchi Math Math sema%20go%20th%20view%20latest%20thai+searchcsearcho Szh lsearch2searchaobecn%C3%A1%20houghova%20transformacec Szh d searcha Mathlearndirect h Math e Mathlearndirect r Szh dir Learn c searche Mathlearndirect esearchrc Mathlearndirect t Kid Ma Math hsearche Kid r Szh disearchec searchvojtech%20hyblerz Mathlearndirect Kid O Learn f

June 13, 2007

Impossible Solutions

Filed under: The Complex Plane — Justin @ 7:59 pm

Suppose you are a city dweller on your way to catch the bus. As you approach the bus stop you see your bus just starting to pull away, so you run after it. You are running at six yards per second. The bus has a 30 yard head start, and is not moving. But it is accelerating at one yard per second per second. Will you catch the bus?

The answer is no. After six seconds you will have gone 36 yards, but the bus will have gone 18 yards (if you remember your high school physics, you know that distance = ½ acceleration × time2). Add in the 30 yard head start and the bus is still ahead of you. And after six seconds the bus has accelerated to a faster speed than you. So you will never catch the bus.

More formally, let t be the time, starting at 0.

Your position = 6t
Bus’s position = ½t2 + 30

If you catch the bus then your positions are the same at the same time. So set the equations equal to each other and solve for t.

6t = ½ t2 + 30
0 = ½ t2 – 6t + 30

Using the quadratic formula, we get:

t = 6 ± √(36 – 4·½·30)
t = 6 ± √(-24)

As you may remember from high school math and physics, you discard all answers that involve the square roots of negative numbers. So there is no solution. We can see that graphically. The line is the graph of your position, and the parabola is the graph of the bus. The graphs never meet because there is no solution.

But what if there is an imaginary solution? As you probably know, i is √-1. We were stumped because we had √-24, which is then √24i2. Let’s see if we can catch that bus after all.

t = 6 ± √-24
t = 6 ± √24i2
t = 6 ± 2i√6

It doesn’t seem like we’ve made much progress – what does it mean to say that we caught the bus at time 6 ± 2i√6? Does that mean we made it? Perhaps in some alternate universe? You can see why the great mathematician and philosopher Rene Descartes rejected imaginary numbers – they were impossible solutions to real problems.

But imaginary numbers refused to go away. In fact, there were clues to their power and utility going back to the ancient Greeks.

Comments Off

June 12, 2007

Taylor Series

Filed under: Calculus — Justin @ 3:23 pm

One of the basic facts about calculus is that finding integrals is tough. The fundamental theorem helps a lot, but as the expressions get more and more complicated it gets tougher and tougher to find the integral. It makes you long for the good old days when everything you integrated was a polynomial in the form of axn. That is undoubtedly what drove people to invent the Taylor series. The central concept is to find a way to express a non-polynomial as a polynomial. For example, could you write sin x as a simple polynomial?

How would you do this? Ponder this for a minute (no, really – take a minute and think about how you would do it). Here is one hint: you can’t use a simple polynomial. Instead use a power series: a0 + a1x + a2x2 + … + anxn.

The secret is to start at the point x=0 (which makes the math really easy). and set the the various derivatives of the power series to the derivatives of sin x.

Step One: Find the derivatives of sin x

Lets start by finding the first five derivatives of sin x at the point x = 0:

sin 0 = 0
sin’0 = cos 0 = 1
sin”0 = -sin 0 = 0
sin(3)0 = -cos 0 = -1
sin(4)0 = sin 0 = 0
sin(5)0 = cos 0 = 1

Step Two: Find the derivatives of the power series

Now lets find the first five derivatives of the power series at x = 0. Lets call the power series a(x).

a(0) = a0 + a1x + a2x2 + … + anxn = a0
a’(0) = a1 + 2a2x + 3a3x2 + … + nanxn-1 = a1
a”(0) = 2a2 + 2·3a3x + 3·4a4x2 + … + (n-1)*nanxn-2 = 2a2
a(3)(0) = 2·3a3 + 2·3·4a4x + 3·4·5a5x2 … + (n-2)·(n-1)·nanxn-3 = 2·3a3
a(4)(0) = 2·3·4a4
a(5)(0) = 2·3·4·5a5
a(n)(0) = n!an

Now you see why it makes sense to find the derivatives at x = 0. All the higher degree terms drop out and you are left with a constant term of n!an. Note that step two is always exactly the same, even if you are finding an approximation for cos x or ex or any other complicated function.

Step Three: Solve for the values of the an‘s

sin 0 = 0 = a0
sin’0 = 1 = a1
sin”0 = 0 = 2a2
sin(3)0 = -1 = 3!a3. So a3 = -1/3!
sin(4)0 = 0= 4!a4. So a4 = 0
sin(5)0 = 1 = 5!a5. So a5 = 1/5!

At this point the pattern emerges. Plug the an‘s back into the power series to get:

sin x = x – x33! + x55! – x77! + …

This is a pretty accurate approximation. The sin of 1 (in radians of course) is .841470985. And plugging 1 into the power series – just going up the x77! term – gives .841468254. Not bad.

Uses of Taylor Series

The nice thing about Taylor series are that they are easy to integrate. Now we can finally integrate everything.

Limitations

There are some limitations to this technique. The biggest is that we are simply assuming that the power series converges, but that may not be the case. That is why tests for series convergence are so useful. A second, and more practical, limitation is that we built our approximation around the point x = 0. The approximation is pretty good near the point x = 0, but it gets worse and worse the farther you get from that point. You would have to rebuild the power series at a different point.

That is easy enough to do. If you want to find values around the point 3, then rebuild your power series using (x-3) instead of x. Otherwise the process is identical.

Tips and Tricks

What if you wanted to find the Taylor series for sin(x2)? You could start taking derivatives:

sin’(x2) = 2x*cos(x2)
sin”(x2) = 2cos(x2) – 4x2sin(x2)

As you can see, it gets ugly in a hurry! The thought of slogging through the process of taking the derivative a few more times is not pleasant. Luckily there is an easier way. Just substitute x2 for x into the Taylor series for sin x, to get:

sin(x2) = x2 – x233! + x255! – x277! + …

Rewriting we get:

sin(x2) = x2 – x63! + x105! – x147! + …

Another easy technique is to solve something like sin x(x+1) by taking the Taylor series for sin x and then dividing each tearm by x + 1. So:

sin x(x+1) = 1x+1[ x - x33! + x55! - x77! + ... ]

Exercises

There are a few Taylor series that you will repeatedly encounter, so they are worth memorizing. As an aid, calculate the following:

  1. ex
  2. sin x
  3. cos x
  4. ln(1 + x)
  5. (1 + x)p
Comments Off

June 7, 2007

Making Sense of Logarithms

Filed under: Uncategorized — Justin @ 6:17 pm
fMathlearndirect O F F Math W W Learn Kid Szh 1 Math Learn Direct Math Without Rigorr b Math Learn Direct eMathlearndirect O F F Math W W Learn Kid Szh 1 Math Learn Direct Math Without Rigore r Math Learn Direct