Answer:
Ruler: £0.90
Pencil: £0.60
Step-by-step explanation:
Ruler = x
Pencil = y
2x + y = 2.4
5x + y = 5.1
3x = 2.7
x = 0.9
y = 0.6
Answer:
The answer would be the 2nd, 3rd, and 5th option on ed
Step-by-step explanation:
Answer:
Her answer is wrong because she the object cannot hit the ground at negative seconds. She could’ve have used other methods because she used the quadratic formula. The advantages is that it works for every situation. The disadvantages is that it takes longer. She should’ve used a different method.
Step-by-step explanation:
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;
}