Answer:
x = -4, x = 1
Step-by-step explanation:
Now I do not know why you said done, but just saying, if you are done with a question, you should delete it. Now I am just going to assume you knew this and move on with the solution of the problem.
When you factor this equation, you will get (x+4)(x-1).
You can then solve for x using zero product property. The first root is -4 and the second root is 1.
10 yards. The amount of yards is 1 third the amount of feet so you just divide 30 by 3 to get the amount of yards
Answer: 22%
Step-by-step explanation:
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;
}