You can turn 5 into 10/2 and add to x/2
then you need to use simple algebra to left the x alone in the equation so you need to multiply both sides by 2 so you get
2y=10+x
then you need to subtract both sides a 10 so
2y-10=x
now change the x to f'(x) and y to x so:
f'(x)=2x-10
Answer:
- Powers of the variable descending left to right
- right side of the equal sign is 0
Step-by-step explanation:
For some constants a, b, and c, the standard form* is ...
ax^2 + bx + c = 0
___
It is nice if the leading coefficient (a) is positive, but that is not required.
The main ideas are that ...
- Powers of the variable are descending
- All of the non-zero terms are on the left side of the equal sign
- Like terms are combined
_____
* This is the <em>standard form</em> for a quadratic. For other kinds of equations, when the expression is equal to zero, this would be called "general form."
The distance formula is:
D = sqrt((x2-x1)^2 + (y2-y1)^2)
D= sqrt ((6-2)^2 + (8-1)^2)
D = sqrt(4^2 + 7^2)
D = sqrt( 16 + 49)
D = sqrt(65)
D = 8.06
Rounded to the beat tenth = 8.1 units.
The answer is C. 8.1 units
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;
}