how do I formulate this expression in racket?

(n*2+ 300) / (13n)

I got the first part done

(define (f n)
( +  ( * n n ) 300))

So lets say I pick 5.

(f 5) would give me 325.

But how would I do the second part- dividing it by (13n)?
____________________
  Racket Users list:
  http://lists.racket-lang.org/users

Reply via email to