Answer:
(f-g)(x) = x^4 - x^3 - 4x^2 - 3
Step-by-step explanation:
(f-g)(x) = x^4 - x^2 + 9 - (x^3 + 3x^2 + 12)
(f-g)(x) = x^4 - x^2 + 9 - x^3 - 3x^2 - 12
(f-g)(x) = x^4 - x^3 - 4x^2 - 3
5 cm is the correct answer it would be half of DG
-2x3 -5x2 assuming that this is written in exponential form
4:6 4’7 4:7 because 4 is into the 15
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;
}