Answer:
the range is {7,5,1}
Step-by-step explanation:
To find the range, just plug in the domain into the function.
f(-1) = -2(-1) + 5 = 7
f (0) = -2(0) + 5 = 5
f(2) = -2(2) + 5 = 1
Answer:
Step-by-step explanation:
Select 4 from 9, and 3 from 8. Multiply together.
C(9,4)*C(8,3)
=9!/(4!5!) * 8!/(3!5!)
=7056
Answer: Justin is shown in 15 pictures with friends, 6 with family, and 8 with only him
Step-by-step explanation: Hope this helps :)
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);