substitute x for y-1
2(y-1)-y=6 distribute
2y-2-y=6 subtract y in 2y
y-2=6 add 2 to get y by itself
y=8
Put y back into equation x=y-1
x=8-1
X=7
horizontal shrink by a factor of 1/2
4 units to the left
Answer:
238 cm
Step-by-step explanation:
so we have a scale factor of 17: 1
originally we had the dimensions: 3cm by 4m
now we have 3*17 by 4*17 = 51 cm by 68 cm
Perimeter = 2*51 + 2*68 = 238 cm
Answer:
// C++ Program to arithmetic operationf on 2 Numbers using Recursion
// Comments are used for explanatory purpose
#include <bits/stdc++.h>
using namespace std;
// add10 recursive function to perform arithmetic operations
int add10(int m, int n)
{
return (m + product(n, 10)); //Result of m + n * 10
return 0;
}
// Main Methods Starts here
int main()
{
int m, n; // 2 Variables m and n declared as integer
cin>>m; // accept input for m
cin>>n; // accept input for n
cout << "Result : "<<add10(m,n); // Print results which is calculated by m + 10 * n
return 0;
}
In the given question, there are numerous information's already provided. It is important to note then down first. With the help of those given information's the required answer can be easily reached.
Percentage of students that weighed 140 pounds = 75 percent
Then
Percentage of students that weighed more than 140 pounds = (100 - 75) percent
= 25 percent
Total number of students that were weighed = 40 students
Total number of students that weighed more than 140 pounds = (25/100) * 40
= (40/4) students
= 10 students
So the number of students that weighed more than 140 pounds is 10. So the correct option in regards to the given question is option "1".