Here are the step for solving this:
1. 3y + 5 > 23
-5 -5
3y/3 > 18/3
y > 6
In words what you are doing is getting y by itself on one side. Subtract the 5 to undo the adding of 5 first. Then, divide both sides by 3.
Answer:
40 girls 20 boys i think / guess
Step-by-step explanation:
Answer:
x = 3
Step-by-step explanation:
5x - 8 + 8 = 7 + 8
5x = 15
5x/5 = 15/5
15 divided by 5 equals 3
Hope this helped you out :)
Answer:
y=2/3x+4
Step-by-step explanation:
rise 2
run 3
y-intercept 4
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;
}