Trigonometry Redefined without Sines And Cosines
Spy der Mann writes "Dr. Norman Wildberger, of the South Wales University, has redefined trigonometry without the use of sines, cosines, or tangents. In his book about Rational Trigonometry (sample PDF chapter), he explains that by replacing distance and angles with new concepts: quadrance, and spread, one can express trigonometric problems with simple algebra and fractional numbers. Is this the beginning of a new era for math?"
I'm a failing engineering student at Iowa State University- or at least I was.. My failing point: math. I can out code some of the instructors in my classes, but I can't do math or memorize functions and derivitives of trigonometric functions.
If this book pans out, it would ultimately change Calculus for the better and might allow me to pass my classes- I wonder if I figured out how to apply this book to my classes and came up with the correct answers despite having worked the problems with his methods, if I'd still pass the class?
Just wait until someone reimplements many software functions that rely on sine, cosine, and tangent, using these new concepts, and get a patent on them.
Inconceivable!
Actually, i think this is a perfect point. My major problem when learning integral calculus was my utter loathing for trigonometric identities (and my inability to remember them) required for solving all sorts of weird integrals. I'm curious how this stuff plays with calculus. If it does, maybe this'll make my life easier if i ever go back and attempt calculus again. anyway, reading TFA, hopefully it says something regarding this :)
There are lives at stake here!
I am wondering if this could be used to make faster calculations
in raytracers and 3D engines by using integer numbers.
What did I miss?
fast as fast can be. you'll never catch me.
It looks like all that is being done is removing squareroots and negative numbers.
quadrance is the square of the distance
spread is the square of the sin angle
If you want to teach trig this way, it will certainly be easier to learn. But then, your students will not appreciate or understand square roots and negative numbers.
It is highly unlikely to lead to any revolutionary new algorithms. It appears that you are changing an angle to something rational, because all most of the popular sine values have square roots in them. However do not be fooled by this, it is just as hard to calculate spread as it is to calculate the sine of an angle. (except in a few cases).
I was taking a real analysis class in my first semester of grad school. I did a good job on the first question, figured everything out, and got that the answer was the integral of 1/(1 + x^2).
I got no points at all for the question - despite solving the parts relevant to the class - because I didn't know off the top of my head that the integral of that is the arctan function.
I love abstract math but I hate trig.
As my Quantum Chemistry professor once said: "Trigonometry is just two formulas: cos^2(x)+sin^2(x)=1 and exp(ix)=cos(x)+i*sin(x). I don't know how they can blow it up into an entire 16 week course"
If you implement a geometrical function whose input is a bunch of lengths and their ratios and whose output is a bunch of lengths and their ratios then you frequently shouldn't need any trig in your function, instead you should be using algebraic functions (+, -, *, /, nth root etc.). But many people find it easy to solve their problem by converting a bunch of stuff to angles using trig and then converting back. In fact, I optimised someone's rendering code recently by literally looking for every line of code where he'd used trig and replacing it, where possible, with the algebraic version. It worked well and speeded up the code massively. In addition I uncovered what you might call bugs. For example at one point this guy did a 180 degree rotation by converting to polar coordinates, adding M_PI to the angle and converting back. Rotating (x,y) by 180 degrees gives (-x,-y). The guy who'd written it was 'trig happy' and should have stopped to thing about the geometrical significance of what he was doing rather than just doing the obvious thing. If this book encourages people to use trig less it might be a good thing. But you don't need to talk about 'quadrance' and 'spread' to use the principles I'm talking about.
But of course there are times when you need trig. I'd hate to see the guy differentiate rotations without trig.
Doesn't it make you feel good to know that our freedoms are protected by politicans, lawyers and journalists.
Sadly, you had this problem because those bastards never ever let you in on the secret:
e^(ix)=cos(x)+i*sin(x)
=> cos(x)=(e^(ix)+e^(-ix))/2
=> sin(x)=(e^(ix)-e^(-ix))/(2i)
Once you know this, then integration and derivation of all sin/cos and derived functions boils down to algebra and derivation and integration of e, which is trivial.
I cannot tell you how angry I was with them for not teaching me this until well after integral calculus.
Ironically, you've actually harmed, not helped, anyone who hadn't read the article. The main point of this work is that distance AND angle are the wrong things. The quadrance (square of distance) and spread (effectively, the square of the sine of the angle -- though help points out 'angle' is a handwaving concept to begin with) should be the fundamental elements and makes the trigonometry meaningful and easy. That quadrance and spread are (independently) functions of distance and angle is trivially obvious, but it is exactly the difference that is his point that makes the math so much simpler.
Perhaps a more specific example for those programmers out there. No more need for lookup tables or Taylor expansion for trig functions unless a human at some point needs an angle value at which case it can be converted in the final step before output. (Internally, programs would never need them.)