Answer:
(2, 3 )
Step-by-step explanation:
Given the 2 equations
3x - 5y = - 9 → (1)
x + 2y = 8 → (2)
Multiplying (2) by - 3 and adding to (1) will eliminate the x- term, that is
- 3x - 6y = - 24 → (3)
Add (1) and (3) term by term to eliminate x
(3x - 3x) + (- 5y - 6y) = (- 9 - 24), that is
- 11y = - 33 ( divide both sides by - 11 )
y = 3
Substitute y = 3 into either of the 2 equations and solve for x
Substituting in (2)
x + 2(3) = 8
x + 6 = 8 ( subtract 6 from both sides )
x = 2
Solution is (2, 3 )
8x4=32
32 divided by 2 = 16
the answer is 16 square feet
hope this helps :)
3/9 + 1/2 = 5/6
2 1/3 + 2 1/4 = 4 and 7/12
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;
}