Sum of polynomials are always polynomials.
Note that despite it's name, single constants, monomials, binomials, trinomials, and expressions with more than three terms are all polynomials.
For example,
0, π sqrt(2)x, 4x+2, x^2+3x+4, x^2-x^2, x^5+x/ π -1
are all polynomials.
What makes an expression NOT a polynomial?
Expressions that contain non-integer or negative powers of variables, rational functions, infinite series.
For example,
sqrt(x+1), 1/x+4, 1+x+ x^2/2!+x^3/3!+x^4/4!+...., (5x+3)/(6x+7)
are NOT polynomials.
Answer: 395
Step-by-step explanation:
201+99+95
Answer:
3 tens
Step-by-step explanation:
4 tens and 5 ones is 45
so 45 minus 15 is 30
so 3 tens
Answer:
hello
Step-by-step explanation:
it's me
It takes value from a user and then user the operation of (+,-,*/).
i used c++ programming language to solve this program:
#include<iostream>
using namespace std;
int main() {
int var1, var2;
char operation;
cout << "Enter the first number : ";
cin >> var1;
cout << endl;
cout <<"Enter the operation to be perfomed : ";
cin >> operation;
cout << endl;
cout << "Enter the second nuber : ";
cin >> var2;
cout << endl;
bool right_input = false;
if (operation == '+') {
cout << var1 << " " << operation << " " << var2 << " = " << (var1 + var2);
right_input = true;
}
if (operation == '-') {
cout << var1 << " " << operation << " " << var2 << " = " << (var1 - var2);
right_input = true;
}
if (operation == '*') {
cout << var1 << " " << operation << " " << var2 << " = " << (var1 * var2);
right_input = true;
}
if (operation == '/' && var2 != 0) {
cout << var1 << " " << operation << " " << var2 << " = " << (var1 - var2);
right_input = true;
}
if (operation == '/' && var2 == 0) {
cout << "Error. Division by zero.";
right_input = true;
}
if (!right_input) {
cout << var1 << " " << operation << " " << var2 << " = " << "Error;";
cout << "Invalid Operation!";
}
cout << endl;
system("pause");
return 0;
}