Answer:
Thirty-two percent of fish in a large lake are bass. Imagine scooping out a simple random sample of 15 fish from the lake and observing the sample proportion of bass. What is the standard deviation of the sampling distribution? Determine whether the 10% condition is met.
A. The standard deviation is 0.8795. The 10% condition is met because it is very likely there are more than 150 bass in the lake.
B. The standard deviation is 0.8795. The 10% condition is not met because there are less than 150 bass in the lake.
C. The standard deviation is 0.1204. The 10% condition is met because it is very likely there are more than 150 bass in the lake.
D. The standard deviation is 0.1204. The 10% condition is not met because there are less than 150 bass in the lake.
E. We are unable to determine the standard deviation because we do not know the sample mean. The 10% condition is met because it is very likely there are more than 150 bass in the lake
The answer is E.
So, if he has 4 dozen eggs, ten dollars per dozen, he has spent $40 on 48 eggs. <em>This means the cost of one egg = 48/40. </em>This can simplify to <em>6/5 </em>which is equal to<em> $1.20. </em>This means the value of one egg is $1.20, including the broken ones! So if six were broken, we multiply 1.20 x 6 which equals <em>$7.20!</em>
Use this "formula" to help find percentages
<em>Part/Total = %( Percentage )/ 100</em>
Now that we know how much money has gone to waste, we can plug in the known values into this "formula."
<em>7.2/48 = x/100</em>
Solve accordingly; cross multiply, 720 = 48x; divide both sides of the equation by 48 to isolate the variable, 720/48 = 48x/48; now you have your final answer which is:
15 = x; going back to the "formula" this means 15% of his money has gone to waste. I hope this helped! :)
Answer:
Kindly check explanation
Step-by-step explanation:
Given the following :
Starting population = 4000
Addition per month = 170
decline on population per month = 70
Increase rate in population per month (dt) :
Starting population = 4000
Number of births per month = 170
However, the population declines by 70 individuals each month
Hence,
Number of births - number of deaths(d) = 70
170 - d = - 70 ( decline?
170 + 70 = d
240 = d
d = number of deaths
Per capita death :
Total number of deaths per. Month / starting population
= 240 / 4000
= 0.06
First of all, a bit of theory: since the area of a square is given by

where s is the length of the square. So, if we invert this function we have
.
Moreover, the diagonal of a square cuts the square in two isosceles right triangles, whose legs are the sides, so the diagonal is the hypothenuse and it can be found by

So, the diagonal is the side length, multiplied by the square root of 2.
With that being said, your function could be something like this:
double diagonalFromArea(double area) {
double side = Math.sqrt(area);
double diagonal = side * Math.sqrt(2);
return diagonal;
}