Answer:
y = x - 2
Step-by-step explanation:
y = mx + b
5 = 1 (7) + b
5 = 7 + b
b = -2
So...
y = x - 2
I believe the answer to be 60000 mg
Given:
n = 20, sample size
xbar = 17.5, sample mean
s = 3.8, sample standard deiation
99% confidence interval
The degrees of freedom is
df = n-1 = 19
We do not know the population standard deviation, so we should determine t* that corresponds to df = 19.
From a one-tailed distribution, 99% CI means using a p-value of 0.005.
Obtain
t* = 2.8609.
The 99% confidence interval is
xbar +/- t*(s/√n)
t*(s/√n) = 2.8609*(3.8/√20) = 2.4309
The 99% confidence interval is
(17.5 - 2.4309, 17.5 + 2.4309) = (15.069, 19.931)
Answer: The 99% confidence interval is (15.07, 19.93)
You can think of x && y || z as equivalent to: int func (int x, int y, int z) { if (x) { if (y) { return true; } } if (z) { return true; } return false; } Since both x and y are fixed to be non-zero values the first return statement is always hit. thats what i think