When u add it stays the same but for subtraction u change the sign.
Example: 2- (-5)=7
Answer:
36 meters
Step-by-step explanation:
The bird starts at 20 and (assuming it goes up) increases by 16 meters. You have to add to get 36. However, if the bird flies 16 meters down, the answer would be four meters. The answer 36 is assuming the bird flies upward.
<span>2n^2 - 7n - 3 = 0
a = 2
b = -7
c =-3
Then use the Quadratic formula:
x = [-b +-sqroot(b^2 -4*a*c)] / 2*a
</span>
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).