Answer:
The answer is option (b), y=-5/2x+4
Step-by-step explanation:
The slope intercept form is a way of expressing the equation of a straight line; where there are two variables that vary in a linear form. The equation is always of the form; y=mx+c
Where;
- y and x represents the variables on the y and x axis respectively
- m is a real number representing the slope
- c is also a real number representing the y-co-ordinate, where the line intercepts the y-axis
Solving for y in 10x+4y=16
(4y)/4=(-10x)/4+(16/4)
The answer is y=-5/2x+4, option (b)
D/2=r
vcone=(1/3)hpir^2
given
d=30
h=9.1
d/2=30/2=15=r
v=(1/3)9.1pi15^2
v=(9.1/3)pi225
v=682.5pi
use 3.141592 to aprox pi
v=2144.13654
the closese is the first one
answer would be 2120 m³
It is -11.34
-$68.04 divide by 6 is -$11.34, so instead of 11.34, it's -11.34
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;
}