answersLogoWhite

0

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

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

How can you use a segment in a circle?

if it is the radius you can find area or circumference


Area of a circle is 36 square centimeters what is the circumference of the circle?

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.


How do you find the area of a circle if you have the cicumfrence?

Divide the circumference by 2*pi which then will give you the radius and use pi*radius2 to find the area of the circle


What is circumference of a circle with 154 square inches?

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.


What about pai in mathmatic?

Pi in math is use to find the circumference or area of a circle.


How do you find the circumference of a circle when you know the area?

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).


How do you find the area of a circle knowing only the circumference?

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.


What measurement to find how much frosting covers the top of a birthday cake area circumference or perimeter?

Circumference is what you use when finding the area of a circle.


How do you find the circumfrence of a circle when you have the area?

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.


Is pi a math term?

Yes it is the number u use to find the area and circumference of a circle


What is the circumference of a circle is 22 units what is the area?

Divide the circumference by (2 x pi) to get the radius. Then use the formula for the area of the circle.


Write a shell program to find the area and circumference 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