A direct variation has a constant slope, i.e. (y/x)= constant.
Both of the given two points give a slope of (y/x)=14/2=28/4=7, so the equation of the function is
y/x=7, or simply
y=7x
Answer:
10x-15y
Step-by-step explanation:
So, when they say use the distrubutive property, they basically mean turning this:
a(b+c)
Into this:
ab+ac
So in this case, it would be:
5(2x-3y)
And we will turn it into:
10x-15y
ANother way to think about it is we are multiplying 2x by 5, and -3y by 5. So:
2x*5
=
10x
And
-3y*5
=
-15y
Then we can combine these two:
10x-15y
Hope this helps!
Answer:
The option which is used to inscribe a square in a circle is option B
B. Construct a perpendicular bisector of the diameter of the circle
Step-by-step explanation:
The steps required to inscribe a square in a circle are;
1) Draw the circle using a compass
2) Draw the diameter of the circle, that passes through the center of the circle with a straight edge label the endpoint of the diameter X and Y
3) Construct the line perpendicular to the diameter of the circle and label the endpoints as A and B
The figure formed by joining the endpoints X, Y, A, and B is the inscribed square of the circle
Therefore, the correct option is to construct a perpendicular bisector of the diameter of the circle.
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;
}
280 because 28 *10 is 280.