It opens upward when X is an even power. It would be for X squared or X raised to the 4th power.
Answer:
-4n - 11
Step-by-step explanation:
Step 1: Convert words into an expression
11 less than the product of a number and -4
(n * -4) - 11
<em>-4n - 11</em>
<em />
Answer: -4n - 11
<u>If needed solve</u>
-4n - 11 + 11 = 0 + 11
-4n / -4 = 11 / -4
<em>n = -2.75</em>
Answer:
3 3/7
Step-by-step explanation:
2 = 14/7
14/7 + 10/7 = 24/7
24/7 simplified is 3 3/7
Answer:
x= -4, -3, 3
Step-by-step explanation:
You must factor this equation.
Once you factor, you get (x+4)(x-3)(x+3)
Set this equal to 0 and solve.
You get -4,-3, and 3.
Answer:
Using c++
Check the image for colors.
Step-by-step explanation:
#include <iostream>
using namespace std;
int main()
{
float length1,length2,width1,width2,area1,area2;
cout<<"length of Rectangle 1\n";
cin>>length1;
cout<<"\nwidth of Rectangle 1\n";
cin>>width1;
cout<<"\nlenght of Rectangle 2\n";
cin>>length2;
cout<<"\nwidth of Rectangle 2\n";
cin>>width2;
area1=length1*width1;
area2=length2*width2;
if (area1<area2)
{cout << "\nRectangle 2 has greater area";}
else {
if (area1>area2)
{cout << "\nRectangle 1 has greater area";}
else {cout << "\nAreas are the same";}
}
return 0;
}