answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What is the first step used when factoring a polynomial consisting of four terms.?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What strategies is appropriate for factoring polynomials with 4 terms?

A strategy that would be appropriate in factoring polynomials with 4 terms would be by grouping where you first determine if the polynomial can be factored by a group.


Is factoring 3 terms different if the polynomial has more than one variable?

Yes.


What does factoring a polynomial mean?

It means finding numbers (constant terms), or polynomials of the same or smaller order that multiply together to give the original polynomial.


What is a trinmoial?

Do you mean trinomial? Trinomial in algebra is a polynomial consisting of three terms or monomial.


How do you factor a polynomial using distributive property when it has 5 terms?

Factoring a polynomial with 5 or more terms is very hard and in general impossible using only algebraic numbers. The best strategy here is to guess some 'obvious' solutions and reduce to a fourth or lower order polynomial.


What is a polynomial with four terms?

First off, it is NOT A QUINTIC! Typically a polynomial of four or more terms is called "a polynomial of n terms", where n is the number of terms. Only the one, two, and three term polynomials are referred to by a particular naming convention.


Is x raised to a negative number a polynomial?

you are so messed up....... a polynomial is just a expression consisting of several terms. like abc or ab or 2a or 5a............so x to a negative number is not a polynomial because x is only one term


What is the name for a polynomial with 5 terms?

Quintinomial, is a polynomial with 5 terms


What is the polynomial having two terms?

A polynomial with two terms is called a binomial.


What is the definition of polynomials?

adj.Of, relating to, or consisting of more than two names or terms.n.A taxonomic designation consisting of more than two terms.Mathematics. An algebraic expression consisting of one or more summed terms, each term consisting of a constant multiplier and one or more variables raised to integral powers. For example, x2 − 5x + 6 and 2p3q + y are polynomials. Also called multinomial.An expression of two or more terms.


Degree of a terms of polynomial?

The degree of a polynomial is the highest degree of its terms. The degree of a term is the sum of the exponents of the variables that appear in it.For example, the polynomial 8x2y3 + 5x - 10 has three terms. The first term has a degree of 5, the second term has a degree of 1, and the last term has a degree of 0. Therefore, the polynomial is degree five.


Algorithm for addition of two polynomials using linked list?

Let p and q be the two polynomials represented by the linked list. 1. while p and q are not null, repeat step 2. 2. If powers of the two terms ate equal then if the terms do not cancel then insert the sum of the terms into the sum Polynomial Advance p Advance q Else if the power of the first polynomial> power of second Then insert the term from first polynomial into sum polynomial Advance p Else insert the term from second polynomial into sum polynomial Advance q 3. copy the remaining terms from the non empty polynomial into the sum polynomial.