V = (1/2) area of cross-section times length.
Note: I will use L in place of x to represent the length of the prism.
In short, V = (1/2)*b*h*L.
To find the surface area, use
A = bh + 2Ls + Lb
Volume given to be 15, 510.
Part (a) set up:
15, 510 = (1/2)(60)(11)L
Can you finish? Just solve for L to find your x-value.
Part (b) set up:
To answer part (b), you must find the value of L in part (a).
A = (60)(11) + 2L(61) + L(60)
Understand? Take it from here.
First, subtract the monthly fee from the October bill, which would be $52.50.
Now, divide this by $0.10.
Parker talked for 525 minutes.<em /><em />
Hope this helps! :)
Answer:
The slope of this line would be undefined.
Step-by-step explanation:
In order to find the slope of any line, use the slope formula.
m(slope) = (y2 - y1)/(x2 - x1)
m = (3 - -1)/(-6 - -6)
m = (3 + 1)/(-6 + 6)
m = 4/0
Since we cannot divide by 0, then we know the slope is undefined.
Hello,
function minmax(int p1,int p2,int p3, int adr_big, int adr_small)
{ int mini=p1,maxi=p1;
if (p1>p2) {mini=p2;}
else {maxi=p2;};
if (p3>maxi) maxi=p3;
if (p3<mini) mini=p3;
*adr_big=maxi;
*adr_small=mini;
};
// main
int a=31,b=5,c=19,big,small;
minmax(a,b,c,&big,&small);