Simplify the following:
((x^2 - 11 x + 30) (x^2 + 6 x + 5))/((x^2 - 25) (x - 5 x - 6))
The factors of 5 that sum to 6 are 5 and 1. So, x^2 + 6 x + 5 = (x + 5) (x + 1):
((x + 5) (x + 1) (x^2 - 11 x + 30))/((x^2 - 25) (x - 5 x - 6))
The factors of 30 that sum to -11 are -5 and -6. So, x^2 - 11 x + 30 = (x - 5) (x - 6):
((x - 5) (x - 6) (x + 5) (x + 1))/((x^2 - 25) (x - 5 x - 6))
x - 5 x = -4 x:
((x - 5) (x - 6) (x + 5) (x + 1))/((x^2 - 25) (-4 x - 6))
Factor -2 out of -4 x - 6:
((x - 5) (x - 6) (x + 5) (x + 1))/(-2 (2 x + 3) (x^2 - 25))
x^2 - 25 = x^2 - 5^2:
((x - 5) (x - 6) (x + 5) (x + 1))/(-2 (x^2 - 5^2) (2 x + 3))
Factor the difference of two squares. x^2 - 5^2 = (x - 5) (x + 5):
((x - 5) (x - 6) (x + 5) (x + 1))/(-2(x - 5) (x + 5) (2 x + 3))
((x - 5) (x - 6) (x + 5) (x + 1))/((x - 5) (x + 5) (-2) (2 x + 3)) = ((x - 5) (x + 5))/((x - 5) (x + 5))×((x - 6) (x + 1))/(-2 (2 x + 3)) = ((x - 6) (x + 1))/(-2 (2 x + 3)):
((x - 6) (x + 1))/(-2 (2 x + 3))
Multiply numerator and denominator of ((x - 6) (x + 1))/(-2 (2 x + 3)) by -1:
Answer: (-(x - 6) (x + 1))/(2 (2 x + 3))
Answer:
yes, the centroid is where the medians meet
<em>hope this helps!</em>
<em>have a great day :)</em>
AEB = CED = 180 - 45 - 14 = 121 deg
EDC = 180 - 121 - 27 = 32 deg
So angle D is 32 degrees
Total Time = (M x K) / (M + K)
5 = (8 x K) / (8 + K)
40 + 5 K = 8K
40 = 3K
King can do the job in 13.33 Hours
King could mow (1 / 13.33) of the lawn in one hour.
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;
}