Answer:
Ox>5
x is less than 5
means nothing more than 5 but anything less than 5
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;
}
Answer:
When Mary raises the probability that she has a better hand is 0.273
Step-by-step explanation:
In the poker game it is given that the probability that Mary has a better hand than John is 0.04.
Let the event that Mary has a better hand than John be A.
Let the event that that Mary raises the stakes be B.
It is also given that if Mary has a better hand than John then she would raise with a probability of 0.9
Therefore p(B | A) = 0.9
If Mary has a poorer hand she will raise with a probability of 0.1
Therefore p(B | A') = 0.1
Given that Mary raises the probability that she has a better hand is given by
p(A | B)
=
= 0.273
So when Mary raises the probability that she has a better hand is 0.273
There are about 28 grams in an ounce so 45/28 is about 1.5
Answer:
I'm guessing you mean f(x)=15,000(9/8)^x. If this is what you mean, the population would increase by about 12,000 (12030.4870605 to be exact).
Step-by-step explanation:
Starting equation: f(x)=15,000(9/8)^x
You can clean up the 9/8 to be 1.125
Now what you want to do is find the answer to (9/8)^5 which is 1.8020324707
Next multiply 1.8020324707 by 15,000 and you get 27030.4870605
Finally 27,030.4870605 - 15,000 gives you 12030.4870605. Which means that the population increased by about 12,000.