Answer:
You use the facts about a 30, 60, 90 triangle.
Step-by-step explanation:
The angles in a triangle add up to 180.
90+30+x=180
120+x=180
x=60
This is a 30-60-90 right triangle.
The side opposite the 30 degree angle is a.
The side opposite the 90 degree angle (hypotenuse) is 2a.
The side opposite the 60 degree angle is a
We know the side opposite the 90 degree angle.
2a = 12
Divide by 2.
a=6
a is the side opposite the 30 degree angle (y)
Because we know a, we can find a
.
6
The square roots cancel, leaving 3.
6 times 3 is 18.
Therefore, the side opposite the 60 degree angle (x) is 18.
Same sign add different sign subtract that means if their both positive you add and if one is positive and the other is negative you subtract
Answer: 18
Step-by-step explanation:
The formula to find the minimum sample size is given by :_

, where
= population standard deviation.
z*= critical z-value.
E= Margin of error.
Given : 
E= ± 8
We know that critical value corresponding to 99% confidence level = z*=2.576 [Using z-table]
Then, the required sample size would be :


[Round to next integer.]
Hence, the required minimum sample size = 18
The answer is a) 12m^3 + 10n^2
Ok so I'll demonstrate in programming language python.
import math
def circle():
r = float(input("Enter r: "))
a = math.pi * r ** 2
print("Area of circle with r = {0} is {1
}cm2".format(str(r), str(a))
circle()