It has no solution because it is not factorable
<span>x2 − 7x + 18
is prime
there is no way you can make two numbers multiply to get positive 18 and add to get negative 7
</span><span>(x − 9)(x − 2) = x^2 - 11x + 18
(x − 9)(x + 2) = x^2 -7x - 18
(x + 9)(x + 2) = x^2 +11x + 18</span>
The coordinates of the point labeled A in the graph shown is (2,-2). The 2 is in the x axis while -2 is in the y axis of the graph while point B is in coordinates (-2,-2) and point C is in coordinates (-2,4).
Answer:
the area is 3i as a fraction would be 3i/1
Step-by-step explanation:
Thanks
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;
}