Answer:
282 Hours after 6 weeks
Step-by-step explanation:
Multiply the 6 weeks and the 48 hour a week adverage and theres your answer!
First set up your two equations:
x + y = 90
x = 2y - 30
Then substitute what x equals in the second equation into the first equation:
(2y -30) + y = 90
Now solve for y:
3y -30 = 90
3y = 120
y = 40
Then use y = 40 and substitute the value for y into one of your original equations and solve for x. I'll choose the first one, but either one will work.
x+ 40 = 90
x = 50
So your solution is x = 50 and y = 40
Answer:
d x=+-3
Step-by-step explanation:
divide both sides by 2
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;
}
Answer:
1) a = 110
2) b = 65
3) c = 115 d= 65 e = 115
How I found the last one?
The whole thing equals 360.
d is equal to 65 so I added those together.
That equals 130. So i subtracted that from 360.
I got 230. Next, I divided that by 2 to get the final 2 angles.