Answer:
work is pictured and shown
Answer:
30,058 spectator
Explanation:
The total number of spectators is equal to the sum of West Stanford's and North Storm's supporters.
We are given that:
Total number of spectators = <span>71,167 spectator
North Storm spectators = </span><span>41,109 spectator
So, to get the number of West Stanford spectators, all we have to do is subtract North Storm spectators from the total spectators as follows:
West Stanford spectators = </span>71,167 - 41,109 = 30,058 spectator
Hope this helps :)
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;
}