Page 2 of 2 FirstFirst 12
Results 11 to 13 of 13
  1. #11
    Join Date
    Jan 2005
    Location
    East Yorkshire
    Posts
    719
    Tokens
    0

    Default

    Hang on, are the brackets there just to show that it's g(t²) and not (gt)²? If so, then ,Jess,'s answer is correct:

    g(t²) = -68
    t² = -68/g
    t = ±√(-68/g)

  2. #12
    Join Date
    Jul 2007
    Posts
    26
    Tokens
    0

    Default

    Good point. This can actually be different in context, it follows similar notation (f(x), g(x), h(x) or even A(t), usually) to functions which is why we assumed that. Given the picture, Jesus' answer is most likely correct.
    (define (reduce f)((lambda (value) (if (equal? value f) f (reduce value))) (let r ((f f) (g ())) (cond ((not (pair? f)) (if (null? g) f (if (eq? f (car g)) (cadr g) (r f (caddr g))))) ((and (pair? (car f)) (= 2 (length f)) (eq? 'lambda (caar f))) (r (caddar f) (list (cadar f) (r (cadr f) g) g))) ((and (not (null? g)) (= 3 (length f)) (eq? 'lambda (car f))) (cons 'lambda (r (cdr f) (list (cadr f) (delay (cadr f)) g)))) (else (map (lambda (x) (r x g)) f))))))

  3. #13

    Default

    so T2 x G is -63 then don't you need to find the value of G before you find the value of t?



Page 2 of 2 FirstFirst 12

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •