Answer:
20.33%
Step-by-step explanation:
We have that the mean (m) is equal to 87.5, the standard deviation (sd) 6.25 and the sample size (n) = 12
They ask us for P (x <86)
For this, the first thing is to calculate z, which is given by the following equation:
z = (x - m) / (sd / (n ^ 1/2))
We have all these values, replacing we have:
z = (86 - 87.5) / (6.25 / (12 ^ 1/2))
z = -0.83
With the normal distribution table (attached), we have that at that value, the probability is:
P (z <-0.83) = 0.2033
The probability is 20.33%
The answer would be letter B
Could it be an Imaginary number?
Jalen has total 63 comic books.
Step-by-step explanation:
Given,
Total value of comic books = $3135
Let,
Number of $45 comic books = x
Number of $65 comic books = y
According to given statement;
45x+65y=3135 Eqn 1
x=y+33 Eqn 2
Putting value of x from Eqn 2 in Eqn 1

Dividing both sides by 110

Putting y=15 in Eqn 2

Total comic books = x+y
Total comic books = 48+15 = 63
Jalen has total 63 comic books.
Keywords: addition, elimination method
Learn more about elimination method at:
#LearnwithBrainly
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;
}