My recursive function multiplies the given area by 1.5 until it reaches 100,000. The output is supposed to be how many times it had to multiply by 1.5. I think I understand most of what I need to do, but I'm not sure what to put in my (if) statement.
(define area-multiplier
(lambda (area)
(if (< 100000 area)
0 ;what do I put here?
(+ 1 (area-multiplier (* area 1.5))))))