This new thread is to help prepare students for ...
Beginning Calculus
Update: please see this next link:
http://developers-heaven.net/forum/index.php/topic,2636.0.html
FREE homework help NOW available ...
You can contact me via:
http://sites.google.com/site/andeveryeyeshallseehim/home/he-comes
(See e-mail link near bottom of first page)
http://developers-heaven.net/forum/index.php?topic=2587.0
(Note to Computer Programming Students:
Many computer programming problems require a good grasp of Calculus. As the pages on this topic of Beginning Calculus are developed, I hope to link to several demo computer programs that require some knowledge of Calculus.)
The goal here is:
In an as simple/straightforward way as possible, and using a 'step by step build' ... to get a good foundation/grasp of Calculus ...
so as to give a 'head-start' for serious students that need to pass Calculus and then want to use it with understanding.
We will try to make good use of many existing useful Calculus 'texts' already up on the web ...
and a top-down/bottom-up 'Modular Computer Programming' style here ...
in our attempt to avoid the too common modern science fallacy of 'circular reasoning'.
One example of this fallacy in circular reasoning, an example that needs to be actively exposed, goes something like this:
If you ask an (evolutionary) geologist, how to know that certain (sedimentary) rocks, (rocks we now know, from lab tests, are laid down by fast moving flood water, when it slows, as per 'Noah's Flood') ... if they are of a certain age ... you may be told that 'the type of fossils in that rock tells its age.'
So off you go to the (evolutionary) paleontologist and ask to know the age of those fossils, and you are told: 'The geologist has supplied me with the date of that rock.'
So ... the (evolutionary) presumption of LONG ages is 'presumed true' from the start ... here ... a fallacy.
Euclid's proofs are a 'step by step' build that are a worthy classic in logic, used by Archimedes and Newton ... and were taught even when I did my High School Geometry, all the way up to Ontario grade 13, ending June '66.
Enjoy ...
The 'top-down' goes like this ...
We will 'name and describe' some major modules right at the start, which we need to 'call' as we progress in 'running' our 'program' ... but we also must ensure that each module (and sub-module) is 'correct' and 'well built' ...
From the 'bottom up' ...
We will ensure the we build each module and sub module from appropriate 'true primitives' of our 'machine programming language', before our program is 'finished' and we expect it to run at all, let along, correctly.
Firstly: Pre-Calculus ...
Review of basic Math, Geometry, Algebra
Note: e^x means 'e to the exponent x', A*e means 'A times e'
Recall 'Bedmas' ... so exponent is calculated first ... then multiply by constant value 'A'
( So you will 'know' how to evaluate an expression like A * e^x )
'Bedmas' is a mnemonic that means first do work inside brackets, then do exponent, then do division and/or multiplication in the order they occur, then do addition and/or subtraction in the order they occur ... All these are 'binary operations' ... Input a, b ... then doing 'binary op' ... output c
Number types:
Natural counting numbers (positive integers)
Discovery of 'zero' ... (extends natural numbers to include 0)
Discovery of negative integers ... extends 'whole' number line to 'left'
(Now we can solve any equation like y = x + b, and have y, x and b ALL be (just) integers)
Discovery of rational numbers a/b, (extends base number set to include decimal fractions, with a, b in set of all integers and b != 0)
(Now we can solve any equation like y = m*x + b and have y, m, x and b ALL be (just) 'rationals')
Recall 'trick' to find a and b in rational q= a/b = 0.123123etc...
1000 * q = 123.123123...
q = 000.123123...
Now subtract ...
So 999 * q = 123
and q = 123/999
Thus can find integers a and b and thus we show that any repeating decimal is a rational number.
Note!!!
Can you see now, how we are moving from discrete counts of quanta, to a continuum?
You will want to note that between any two different rational numbers, a, b with a < b, no matter how close together they might be, we can always insert the one rational, (a+b)/2, or the 9 rationals a + k*(b-a)/10 where k takes values 1 to 9 ... And between each of these we can keep on inserting, and so on ...
We will see that Calculus helps us to find ways to evaluate, to as many decimal places of precision as desired, quantities that are 'real' ... but may NOT be 'rational' ... i.e. NOT 'ratio' of two integers! (We already know about some such numbers like square root of 3, for example, or pi. You may have learned an algorithm to find the square root of any decimal fraction, to as many places of decimal precision as you like, but do you know a method, like Archimedes did, over 2200 years ago, to find pi to as much precision as desired?)
http://itech.fgcu.edu/faculty/clindsey/mhf4404/Archimedes/Archimedes.html
See link to modern computer program that uses an Updated Archimedes Method of finding pi ...
http://developers-heaven.net/forum/index.php?topic=2602.0
Discovery/extension to the 'real continuum' ... i.e. the 'complete' number line to include numbers that are non repeating decimals like pi, e, sqrt(2), etc.
Note: you may be required to prove some 'real' ... like sqrt(2) ... is not a 'rational' on an exam.
An often used method here is *proof by contradiction*.
So firstly, assume 'true' and that for some integers a, b ... sqrt(2) = a/b with NO common factors
(i.e. fraction is in 'lowest terms'), then square each side and 2*b^2 = a^2 ... which implies that a^2 is 'even' ... which implies that a is 'even' (since an odd times an odd is odd) ... So ... now can re-write a as 2*c ... So substituting '2*c' in the place of 'a' ... (2*c)^2 = 4*c^2 = 2*b^2 ... And thus ... 2*c^2 = b^2 ... Which implies that b^2 and then b are even.
So we see 'here' that both a and b must 'then' be even. But this contradicts that a/b was in lowest terms with NO common denominator (like 2 here). So we conclude that sqrt(2) is NOT a rational number.
To show that a number like e is not a rational, we could show that it is a non-repeating infinite decimal sequence ... by looking at the infinite series expansion for e below:
e = 1 + 1/1! + 1/2! + 1/3! + 1/4! + ...
(Note: n! means 'n factorial' and n! = 1*2*3* .... *n
Can you see that n! becomes ever much larger as n grows larger?)
... and see that adding in the next term, in a never ending series of ever increasingly SMALL decimal bits ... ensures the next decimals in the sequence have no repeating pattern, since the new factor in the ever increasing factorial, that we next divide by, will keep adding new re-scrambled smaller bits .... 'all the way' ... out to infinity ...
Discovery/extension to 'complete' 2-Dimensional Plane via 2D vectors or z = r*e^(i*t) = r*(cos(t) + i*sin(t)) and i has the value sqrt(-1)
Above begs question(s) of what is(are) ...
e,
cos(t),
sin(t)
...
Hint:
Think of music, like a violin string vibrating, think of the the alternating current induced into an electrical circuit by a microphone near by, think of the radio wave vibrations that fill our skies, think of nerve pulse electrical activity coursing though you right now, as you read this, think of the waves on the lake as a fish jumps up and breaks through the surface ... and dives back down into the deep ... Ah ... we are emersed in so much beautiful and intricate sine wave and exponential activity ... Don't you think?
What I am seeing myself ... and from some recent research of well seasoned Calculus Professors ... that what is especially needed as a necessary Pre-Calculus preparation ... is a good grounding in Algebra and Problem Solving with close attention to excellent skill in 'details manipulation' of even fairly complex algebra ... so as to get the correct result in the end ... and to 'know' that your answer is correct 100 % of the time, (or nearly most of the time.)
The reality to me seems ... that although the math needed in ones routine practice will soon enough become 'routine' ... the 'bar' to even get to 'practice' ... often seems 'pretty high'.
More to follow ...
P.S.
You may be interested in what motivated Newton in his 'discovery and pursuit of the tools of calculus' ...
"The greatest Scientist of all time, Sir Isaac Newton, was also a great student of the Bible. In fact, his motivation to grind telescope lens, to better track the planets positions in the sky, to study and to discover the laws of gravity, motion and the laws of calculus that allowed him to predict, with great precision, where the planets would be in the sky, back in Bible times and into the future to our days … was … because he wanted to see, if he was part of that generation that would still be living when the Lord Jesus, the Anointed Holy One of Israel, would return. However Newton came to realize, that that time was ahead, even for this present generation. First Israel had to be become a nation again (in 1948), and then Jerusalem had to come back to Israel (in 1967), in order for all the trouble that was predicted to occur with all the nations being troubled over Jerusalem … and then for Jesus to return, to save his people that remain, just outside Jerusalem, at the same spot He ascended into heaven about 2000 years ago."
The above 'excerpt' was taken from ...
http://developers-heaven.net/forum/index.php?topic=2587.msg2918#msg2918
P.P.S.
An other perspective from MIT ... 'The Big Picture of Calculus'
http://www.youtube.com/watch?v=UcWsDwg1XwM
Jumping in to see a very common example of applied calculus ...
http://www.dummies.com/how-to/content/how-to-analyze-position-velocity-and-acceleration-.html
http://www.mathcentre.ac.uk/resources/uploaded/mc-web-mech1-10-2009.pdf
http://www.youtube.com/watch?v=d-_eqgj5-K8
On the next page, please *NOTE THIS VERY AMAZING AND VERY USEFUL FORMULA*:
Euler showed that e^(i*pi) + 1 = 0
(Recall that i is defined as sqrt(-1) ... thus i^2 = -1 and i^4 = 1)
Also, please note this typo error, on next page here corrected
Implies ... d(C)/dr = d(pi*r)/dr = 2*pi ( where here we use notation dC/dr instead of notation C' ) <wrong version>
Implies ... d(C)/dr = d(2*pi*r)/dr = 2*pi ( where here we use notation dC/dr instead of notation C' ) <corrected version>