Solver Finding area of a circle
Algebra
->
Surface-area
-> Solver Finding area of a circle
Log On
Geometry: Area and Surface Area
Geometry
Solvers
Solvers
Lessons
Lessons
Answers archive
Answers
Source code of 'Finding area of a circle'
This Solver (Finding area of a circle)
was created by by
Shin123(626)
:
View Source
,
Show
,
Put on YOUR site
About Shin123
:
Just a kid who solves math problems for fun :)
==section input The radius,r, of a circle is *[input r=5] ==section solution The formula for finding the area of a circle is {{{A=pi(r^2)}}} Since the radius is $r, we can plug in $r for the radius. So {{{A=pi($r^2)}}} Replace pi with 3.14159 because those are the first 5 decimal digits for pi. {{{A=3.14159($r^2)}}} *[assign r2=($r)^2] {{{A=3.14159($r2)}}} *[assign r3=$r2*3.14159] {{{highlight(A=$r3)}}} The area is roughly $r3 units^2. ==section output r2,r3 ==section check