Answer:
63
Step-by-step explanation:
She finds her average resting heart rate to be 62 after 5 days.
That means, average of the 5 heart rate pulse=62
If the last day was 58 and all the other days were the same.
Let x be her pulse on the other days,
Then,

Her pulse on all the other days is 63.
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:
The boat is approaching the dock at rate of 2.14 ft/s
Step-by-step explanation:
The situation given in the question can be modeled as a triangle, please refer to the attached diagram.
A rope attached to the bow of the boat is drawn in over a pulley that stands on a post on the end of the dock that is 5 feet higher than the bow that means x = 5 ft.
The length of rope from bow to pulley is 13 feet that means y = 13 ft.
We know that Pythagorean theorem is given by

Differentiating the above equation with respect to time yields,


dx/dt = 0 since dock height doesn't change


The rope is being pulled in at a rate of 2 feet per second that is dz/dt = 2 ft/s
First we need to find z
z² = (5)² + (13)²
z² = 194
z = √194
z = 13.93 ft
So,



Therefore, the boat is approaching the dock at rate of 2.14 ft/s