Tagged Questions
1
vote
2answers
1k views
Using Scheme code to solve a quadratic equation?
I wrote this scheme code to compute one solution of the quadratic equation a*x2 + b*x + c = 0
(define (solve-quadratic-equation a b c) (define disc (sqrt (- (* b b) (* 4.0 a c)))) (/ (+ (- b) disc) ...