Angle 2 and 5 are alternate interior angle and they are congruent. That means that m <5= 35°.
Step-by-step explanation:
Difference per month = 28
=> January = February - 28 = 66-28 = 38
Answer: x =104
Step-by-step explanation:
If we draw the black line shown in the figure, two isosceles triangles are formed, and the base angles of the isosceles triangles are the same. The red angles are the same and the green ones too. The 104 degree angle is the sum of the red angle and the green angle, and x is also the sum of the red angle and the green angle, therefore x = 104.
Answer:
You have to multiply the denorminator to both sides in order to make x the subject :


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;
}