koodausta

26.11


(define(P x) (- 6 x))  6 -12 56 25 16 -245 -108 15 76 22 652 34 102400040 -0.10001 528
(P 0)
(P 18)
(P -50)

(define(R x) (+ (* 3 x) 10))
(R 5)
(R 2)
(R -4)

(define (T x) (- x -9))
(T 36)
(T -117)
(T 6)

(define (H a) (- (* 8 a a) -4))
(H 3)
(H -1.5)
(H 9)

(define (S x) (+ (* x x x x x ) x))
(S 2
(S (40))
(S (-0.1))

(define (Q y) (+ (* y y y) 6 y 2))
(Q -1)
(Q 0)
(Q 8)

(define (Y a b) (- (* 2 a a ) 5 a b (+(3b))))
(P a = 1 b= -3)
(P a = -4 b= 7)

emt

(define v 4)
(+ (* 3 v) 6)

(define x -5)
(+ x 7)
(- x 9)
(* 11 x)
(+ x 3)

(define a 7)
(- a 9)
(* 16 a)
(+ 2 a 8)
(- 3 a 11)

(define f -2) (define y 8)
(+ f y)
(/ y f)