Answer:

Step-by-step explanation:
To solve this problem, we need to find the linear function. We know that the constant rate of change is -0.5° Celsius per minute. Also, after 60 minutes the temperature was 10° Celsius. So, we have a one point and the slope of the linear function, let's use the point-slope formula

Where the y-intercept is at (0, 40).
Now, we have two points to graph the relation between minutes and Celsius degrees.
Therefore, the room's temperature as a function of time is

Its graph is attached.
Knowns:
C = mx + b
m = 367
b = 1500
C = 367x + 1500
Cost (c) = 16,600
16600 = 367x + 1500
subtract 1500 from both sides
15,100 = 367x
Divide both sides by 367
x = 41.14
41 Students can attend the trip! Hope this helps
I believe the answer is 27/30
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;
}