Solving a Physics Problem
With the collection of programs that we now have, solving a simple physics problem becomes easy. We assume that we have values for some variables and want the value of another variable:
What is the radius of a circle with area = 10
(radius area)
(= area (* 3.14159 (expt radius 2)))
(= radius (sqrt (/ area 3.14159)))
1.78412