the reason is because a circle is divided in 3 parts and the left overs are .14 so when you measure the ciecumference, you times the diameter by 3.14 and you get the correct answer to the question.EX: R=3.5cm D=7cm 7cm so that is why we use pi . x 3.14
--------
21.98
if it is the radius you can find area or circumference
The area of a circle with radius r is pi*r*r and its circumference is 2*pi*r Use the first to find r and then use that value of r in the second to find the circumference.
Pi in math is use to find the circumference or area of a circle.
To find the area of a circle knowing only the circumference, you can use the formula A = (C^2) / (4π), where A is the area and C is the circumference. Square the circumference, then divide it by 4π to get the area.
Yes it is the number u use to find the area and circumference of a circle
if it is the radius you can find area or circumference
The area of a circle with radius r is pi*r*r and its circumference is 2*pi*r Use the first to find r and then use that value of r in the second to find the circumference.
Divide the circumference by 2*pi which then will give you the radius and use pi*radius2 to find the area of the circle
Use the standard formula for the area of a circle to find out the circle's radius. Then multiply that by 2 x pi, to get the circumference.
Pi in math is use to find the circumference or area of a circle.
To find the circumference of a circle when you know the area, you first need to find the radius of the circle using the formula for the area (area = πr^2). Once you have the radius, you can calculate the circumference using the formula for the circumference (circumference = 2πr).
To find the area of a circle knowing only the circumference, you can use the formula A = (C^2) / (4π), where A is the area and C is the circumference. Square the circumference, then divide it by 4π to get the area.
Circumference is what you use when finding the area of a circle.
Divide the area by pi then square root your answer which will give the radius of the circle and use 2*pi*radius to find the circumference.
Yes it is the number u use to find the area and circumference of a circle
Divide the circumference by (2 x pi) to get the radius. Then use the formula for the area of the circle.
echo -n "Enter the radius of a circle : "read r# use formula to get itarea=$(echo "scale=2;3.14 * ($r * $r)" | bc)# use formula to get itd=$(echo "scale=2;2 * $r"|bc)circumference=$(echo "scale=2;3.14 * $d"| bc)echo "Area of circle is $area"echo "Circumference of circle is $circumference"# ### softspy88@gmail.com