Answer:
cos z = 35 / 37
Step-by-step explanation:
cos z is the ratio of the adjacent side of a triangle (the side adjacent to angle z to the hypotenuse:
cos z = (adj. side) / (hypotenuse)
Here we have cos z = 35 / 37
Answer:
First you will want to turn 15% into a decimal, then you will subtract the decimal from 50. Hope this helped
Step-by-step explanation:
Answer:
m<2 = 4x - 26 = 4(30) - 26 = 94 degrees
m<3 = 3x + 4 = 3(30) + 4 = 94 degrees
Step-by-step explanation:
Congruent angles are equal, so m<2 = m<3
4x - 26 = 3x + 4
x = 30
m<2 = 4x - 26 = 4(30) - 26 = 94 degrees
m<3 = 3x + 4 = 3(30) + 4 = 94 degrees
Answer:
The 95% confidence interval for the true proportion of university students who use laptop in class to take notes is (0.2839, 0.4161).
Step-by-step explanation:
The (1 - <em>α</em>)% confidence interval for population proportion <em>P</em> is:

The information provided is:
<em>x</em> = number of students who responded as"yes" = 70
<em>n</em> = sample size = 200
Confidence level = 95%
The formula to compute the sample proportion is:

The R codes for the construction of the 95% confidence interval is:
> x=70
> n=200
> p=x/n
> p
[1] 0.35
> s=sqrt((p*(1-p))/n)
> s
[1] 0.03372684
> E=qnorm(0.975)*s
> lower=p-E
> upper=p+E
> lower
[1] 0.2838966
> upper
[1] 0.4161034
Thus, the 95% confidence interval for the true proportion of university students who use laptop in class to take notes is (0.2839, 0.4161).