Thanks for the feedback, conanite :)
I think I know how to cope with that problem. I'll post my results as soon as I have some spare time. I'm also planning to successively add more elaborate mathematical functions. Maybe some numerical integration or solving differential equations.
Here are definitions of the basic trigonometric functions alternative to the Taylor series. They use complex numbers and Euler's formula. By the way, could someone tell me how to make my code stand out in a comment? Thanks.
(= e 2.71828182845904523539)
(= pi 3.14159265358979323846)
(def sin (x)
(/ (- (expt e (* 0+1.i x)) (expt e (* 0-1.i x))) 0+2i))
(def cos (x)
(/ (+ (expt e (* 0+1.i x)) (expt e (* 0-1.i x))) 2.0))
I'm assuming when you say 'standout' you mean format/indent your line breaks for code.... for that you add 4 spaces before each line of code. If you mean standout = bold, no clue.
T.