Полином — разлика између измена

С Википедије, слободне енциклопедије
Садржај обрисан Садржај додат
м Бот: по захтеву Садка
.
Ред 80: Ред 80:


У елементарној [[алгебра|алгебри]], се изучавају методи за решавање свих полиномијалних једначина једне променљиве првог и другог степена. Када су у питању полиномијалне једначине, променљива се често назива ''непознатом''. Број решења полиномијалне једначине не може да премаши степен полинома, и тачно је једнак овом степену ако се уброји [[мултиплицитет]] решења, као и [[комплексан број|комплексна]] решења. Ова чињеница је [[основна теорема алгебре]].
У елементарној [[алгебра|алгебри]], се изучавају методи за решавање свих полиномијалних једначина једне променљиве првог и другог степена. Када су у питању полиномијалне једначине, променљива се често назива ''непознатом''. Број решења полиномијалне једначине не може да премаши степен полинома, и тачно је једнак овом степену ако се уброји [[мултиплицитет]] решења, као и [[комплексан број|комплексна]] решења. Ова чињеница је [[основна теорема алгебре]].

== Operacije ==
{{rut}}
=== Сабирање и одузимање ===
Polynomials can be added using the [[associative law]] of addition (grouping all their terms together into a single sum), possibly followed by reordering (using the [[commutative law]]) and combining of like terms.<ref name="Edwards-1995-p47">{{cite book |last=Edwards |first=Harold M. |title=Linear Algebra |publisher=Springer |year=1995 |isbn=978-0-8176-3731-6 |page=47 |url=https://books.google.com/books?id=ylFR4h5BIDEC&pg=PA47}}</ref><ref>{{cite book |last=Salomon |first=David |title=Coding for Data and Computer Communications |publisher=Springer |year=2006 |isbn=978-0-387-23804-3 |page=459 |url=https://books.google.com/books?id=Zr9bjEpXKnIC&pg=PA459}}</ref> For example, if
:<math> P = 3x^2 - 2x + 5xy - 2 </math> and <math> Q = -3x^2 + 3x + 4y^2 + 8</math>
then the sum
<math display="block">P + Q = 3x^2 - 2x + 5xy - 2 - 3x^2 + 3x + 4y^2 + 8 </math>
can be reordered and regrouped as
<math display="block">P + Q = (3x^2 - 3x^2) + (- 2x + 3x) + 5xy + 4y^2 + (8 - 2) </math>
and then simplified to
<math display="block">P + Q = x + 5xy + 4y^2 + 6.</math>
When polynomials are added together, the result is another polynomial.<ref name=":0">{{Cite book|url=https://books.google.com/books?id=PagNAQAAIAAJ&q=the+addition+of+polynomials+is+an+operation+that+takes+any+two+polynomials+and+produce+always+another+polynomial,|title=Introduction to Algebra|date=1965|publisher=Yale University Press|pages=621|language=en|quote=Any two such polynomials can be added, subtracted, or multiplied. Furthermore , the result in each case is another polynomial}}</ref>

Subtraction of polynomials is similar.

===Multiplication===
Polynomials can also be multiplied. To expand the [[product (mathematics)|product]] of two polynomials into a sum of terms, the distributive law is repeatedly applied, which results in each term of one polynomial being multiplied by every term of the other.<ref name="Edwards-1995-p47"/> For example, if
<math display="block">\begin{align}
\color{Red} P &\color{Red}{= 2x + 3y + 5} \\
\color{Blue} Q &\color{Blue}{= 2x + 5y + xy + 1}
\end{align}</math>
then
<math display="block">\begin{array}{rccrcrcrcr}
{\color{Red}{P}} {\color{Blue}{Q}} & {{=}}&&({\color{Red}{2x}}\cdot{\color{Blue}{2x}})
&+&({\color{Red}{2x}}\cdot{\color{Blue}{5y}})&+&({\color{Red}{2x}}\cdot {\color{Blue}{xy}})&+&({\color{Red}{2x}}\cdot{\color{Blue}{1}})
\\&&+&({\color{Red}{3y}}\cdot{\color{Blue}{2x}})&+&({\color{Red}{3y}}\cdot{\color{Blue}{5y}})&+&({\color{Red}{3y}}\cdot {\color{Blue}{xy}})&+&
({\color{Red}{3y}}\cdot{\color{Blue}{1}})
\\&&+&({\color{Red}{5}}\cdot{\color{Blue}{2x}})&+&({\color{Red}{5}}\cdot{\color{Blue}{5y}})&+&
({\color{Red}{5}}\cdot {\color{Blue}{xy}})&+&({\color{Red}{5}}\cdot{\color{Blue}{1}})
\end{array}</math>
Carrying out the multiplication in each term produces
<math display="block">\begin{array}{rccrcrcrcr}
PQ & = && 4x^2 &+& 10xy &+& 2x^2y &+& 2x \\
&&+& 6xy &+& 15y^2 &+& 3xy^2 &+& 3y \\
&&+& 10x &+& 25y &+& 5xy &+& 5.
\end{array}</math>
Combining similar terms yields
<math display="block">\begin{array}{rcccrcrcrcr}
PQ & = && 4x^2 &+&( 10xy + 6xy + 5xy ) &+& 2x^2y &+& ( 2x + 10x ) \\
&& + & 15y^2 &+& 3xy^2 &+&( 3y + 25y )&+&5
\end{array}</math>
which can be simplified to
<math display="block">PQ = 4x^2 + 21xy + 2x^2y + 12x + 15y^2 + 3xy^2 + 28y + 5.</math>
As in the example, the product of polynomials is always a polynomial.<ref name=":0" /><ref name=Barbeau-2003-pp1-2>{{harvnb|Barbeau|2003|pp=[https://books.google.com/books?id=CynRMm5qTmQC&pg=PA1 1]–2}}</ref>

===Composition===
Given a polynomial <math>f</math> of a single variable and another polynomial {{mvar|g}} of any number of variables, the [[function composition|composition]] <math>f \circ g</math> is obtained by substituting each copy of the variable of the first polynomial by the second polynomial.<ref name=Barbeau-2003-pp1-2/> For example, if <math>f(x) = x^2 + 2x</math> and <math>g(x) = 3x + 2</math> then
<math display = "block"> (f\circ g)(x) = f(g(x)) = (3x + 2)^2 + 2(3x + 2).</math>
A composition may be expanded to a sum of terms using the rules for multiplication and division of polynomials. The composition of two polynomials is another polynomial.<ref>{{Cite book|last=Kriete|first=Hartje|url=https://books.google.com/books?id=HwqjxJOLLOoC&q=The+composition+of+two+polynomials+is+always+another+polynomial.&pg=PA159|title=Progress in Holomorphic Dynamics|date=1998-05-20|publisher=CRC Press|isbn=978-0-582-32388-9|pages=159|language=en|quote=This class of endomorphisms is closed under composition,}}</ref>
<!--something about the composition where ''f'' has many variables? <ref name=Barbeau-2003-pp1-2/>-->

===Division===

The division of one polynomial by another is not typically a polynomial. Instead, such ratios are a more general family of objects, called ''[[rational fraction]]s'', ''rational expressions'', or ''[[rational function]]s'', depending on context.<ref>{{cite book|last1 = Marecek | first1 = Lynn | last2 = Mathis | first2 = Andrea Honeycutt | title = Intermediate Algebra 2e | date = 6 May 2020 | publisher = [[OpenStax]] <!-- | location = Houston, Texas -->| url = https://openstax.org/details/books/intermediate-algebra-2e | at = §7.1}}</ref> This is analogous to the fact that the ratio of two [[integer]]s is a [[rational number]], not necessarily an integer.<ref>{{Cite book|last1=Haylock|first1=Derek|url=https://books.google.com/books?id=hgAr3maZeQUC&q=division+integers+not+closed&pg=PA49|title=Understanding Mathematics for Young Children: A Guide for Foundation Stage and Lower Primary Teachers|last2=Cockburn|first2=Anne D.|date=2008-10-14|publisher=SAGE|isbn=978-1-4462-0497-9|pages=49|language=en|quote=We find that the set of integers is not closed under this operation of division.}}</ref><ref name = openstax>{{harvnb|Marecek|Mathis|2020|loc=§5.4]}}</ref> For example, the fraction {{math|1/(''x''<sup>2</sup> + 1)}} is not a polynomial, and it cannot be written as a finite sum of powers of the variable {{mvar|x}}.

For polynomials in one variable, there is a notion of [[Euclidean division of polynomials]], generalizing the [[Euclidean division]] of integers.{{efn|This paragraph assumes that the polynomials have coefficients in a [[field (mathematics)|field]].}} This notion of the division {{math|''a''(''x'')/''b''(''x'')}} results in two polynomials, a ''quotient'' {{math|''q''(''x'')}} and a ''remainder'' {{math|''r''(''x'')}}, such that {{math|''a'' {{=}} ''b'' ''q'' + ''r''}} and {{math|degree(''r'') < degree(''b'')}}. The quotient and remainder may be computed by any of several algorithms, including [[polynomial long division]] and [[synthetic division]].<ref>{{cite book |first1=Peter H. |last1=Selby |first2=Steve |last2=Slavin |title=Practical Algebra: A Self-Teaching Guide |date=1991 |publisher=Wiley |isbn=978-0-471-53012-1 |edition=2nd}}</ref>

When the denominator {{math|''b''(''x'')}} is [[monic polynomial|monic]] and linear, that is, {{math|1=''b''(''x'') = ''x'' − ''c''}} for some constant {{mvar|c}}, then the [[polynomial remainder theorem]] asserts that the remainder of the division of {{math|''a''(''x'')}} by {{math|''b''(''x'')}} is the [[#evaluation|evaluation]] {{math|''a''(''c'')}}.<ref name = openstax/> In this case, the quotient may be computed by [[Ruffini's rule]], a special case of synthetic division.<ref>{{Cite web|last=Weisstein|first=Eric W.|title=Ruffini's Rule|url=https://mathworld.wolfram.com/RuffinisRule.html|access-date=2020-07-25|website=mathworld.wolfram.com|language=en}}</ref>


== Види још ==
== Види још ==
Ред 90: Ред 149:
* [[Безуов став]]
* [[Безуов став]]
* [[Биномна теорема]]
* [[Биномна теорема]]

== Напомене ==
{{notelist}}


== Референце ==
== Референце ==
{{reflist}}
{{reflist|}}


== Литература ==
== Литература ==

Верзија на датум 26. јун 2023. у 00:58

У математици, полином је израз који је сачињен од једне или више променљивих и константи, коришћењем операција сабирања, одузимања, множења, и степеновања позитивним целим степенима. На пример, је полином. Треба имати у виду да дељење и кореновање изразом који садржи променљиву у општем случају није дозвољено код полинома[1].

Преглед

Полиноми су сачињени од градивних елемената који се називају мономи, а они се састоје од константе (која се назива коефицијентом), помножене једном или више променљивих (које се обично представљају словима). Свака променљива може имати константан позитиван цео број као експонент. Експонент над променљивом у моному је једнак степену те променљиве у моному. Како је , степен променљиве без записаног експонента је један. Моном без променљивих се назива константним мономом, или просто константом. Степен константе је 0. Коефицијент монома може бити било који број, укључујући разломке, ирационалне и негативне бројеве.

На пример,

је моном. Коефицијент је -5, а променљиве су x и y. Степен променљиве x је два, а степен променљиве y је један.

Степен целог монома је збир степени сваке променљиве у њему. У горњем примеру је степен једнак 2 + 1 = 3.

Полином представља збир једног или више монома. На пример, ово је један полином:

Састоји се од три монома: први је степена два, други је степена један, а трећи је степена нула.

Полином се обично записује тако да мономи вишег степена долазе пре оних нижег степена. У првом моному, коефицијент је 3, променљива је x, а експонент је два. У другом моному, коефицијент је -5. Трећи је константа. Степен полинома је највећи степен неког његовог монома. На пример, горњи полином има степен два.

Полином степена један се назива линеарни, полином степена два се назива квадратни, а онај степена три се назива кубни.

Полином сачињен од једног монома се и сам назива моном. Полином сачињен од два монома је бином, док је онај сачињен од три монома назива трином.

Полином чији терм највишег степена има коефицијент 1 је моничан.

Израз који се може трансформисати у полином кроз низ примена комутативних, асоцијативних, и дистрибутивних закона се обично и сам сматра полиномом.

На пример

се сматра полиномом, јер је еквивалентно . Коефицијент је .

Али,

није полином, јер укључује дељење променљивом, као што у општем случају није ни

јер има променљиву за експонент.

Како се одузимање може посматрати као сабирање сабирака супротног знака, а степеновање константним позитивним бројем се може посматрати као поновљено множење, полиноми се могу конструисати од константи и променљивих применом само операција сабирања и множења.

Полиномијална функција је функција дефинисана вредношћу полинома. На пример, функција f дефинисана као

је полиномијална функција. Полиномијалне функције су важна класа глатких функција. Израз глатко долази из математичке анализе. Значи да је увек могуће наћи извод полиномијалне функције, колико год пута, и колико год често. Глатка функција описује изглед графика полиномијалне функције.

Елементарна својства полинома

  1. Збир два полинома је полином
  2. Производ два полинома је полином
  3. Извод полинома је полином
  4. Примитивна функција полинома је полином

Полиноми се користе да апроксимирају друге функције, као што су синус, косинус, и експоненцијална функција.

Сви полиноми имају проширени облик, у коме се користи дистрибутивни закон да се уклоне све заграде. Неки полиноми имају растављен облик у коме је полином записан као производ полинома са реалним коефицијентима. На пример, полином

је једнак, и представља проширени облик полинома

,

који је записан у растављеном облику.

Сваки полином једне променљиве је еквивалентан полиному облика

.

Ово се некад узима за дефиницију полинома једне променљиве.

Рачунање вредности полинома се састоји од додељивања неке бројевне вредности свакој променљивој, и извршавања одговарајућих множења и сабирања. Ово рачунање се понекад ефикасније спроводи коришћењем Хорнерове шеме

.

У елементарној алгебри, се изучавају методи за решавање свих полиномијалних једначина једне променљиве првог и другог степена. Када су у питању полиномијалне једначине, променљива се често назива непознатом. Број решења полиномијалне једначине не може да премаши степен полинома, и тачно је једнак овом степену ако се уброји мултиплицитет решења, као и комплексна решења. Ова чињеница је основна теорема алгебре.

Operacije

Сабирање и одузимање

Polynomials can be added using the associative law of addition (grouping all their terms together into a single sum), possibly followed by reordering (using the commutative law) and combining of like terms.[2][3] For example, if

and

then the sum

can be reordered and regrouped as
and then simplified to
When polynomials are added together, the result is another polynomial.[4]

Subtraction of polynomials is similar.

Multiplication

Polynomials can also be multiplied. To expand the product of two polynomials into a sum of terms, the distributive law is repeatedly applied, which results in each term of one polynomial being multiplied by every term of the other.[2] For example, if

then
Carrying out the multiplication in each term produces
Combining similar terms yields
which can be simplified to
As in the example, the product of polynomials is always a polynomial.[4][5]

Composition

Given a polynomial of a single variable and another polynomial g of any number of variables, the composition is obtained by substituting each copy of the variable of the first polynomial by the second polynomial.[5] For example, if and then

A composition may be expanded to a sum of terms using the rules for multiplication and division of polynomials. The composition of two polynomials is another polynomial.[6]

Division

The division of one polynomial by another is not typically a polynomial. Instead, such ratios are a more general family of objects, called rational fractions, rational expressions, or rational functions, depending on context.[7] This is analogous to the fact that the ratio of two integers is a rational number, not necessarily an integer.[8][9] For example, the fraction 1/(x2 + 1) is not a polynomial, and it cannot be written as a finite sum of powers of the variable x.

For polynomials in one variable, there is a notion of Euclidean division of polynomials, generalizing the Euclidean division of integers.[а] This notion of the division a(x)/b(x) results in two polynomials, a quotient q(x) and a remainder r(x), such that a = b q + r and degree(r) < degree(b). The quotient and remainder may be computed by any of several algorithms, including polynomial long division and synthetic division.[10]

When the denominator b(x) is monic and linear, that is, b(x) = xc for some constant c, then the polynomial remainder theorem asserts that the remainder of the division of a(x) by b(x) is the evaluation a(c).[9] In this case, the quotient may be computed by Ruffini's rule, a special case of synthetic division.[11]

Види још

Напомене

  1. ^ This paragraph assumes that the polynomials have coefficients in a field.

Референце

  1. ^ Selby, Peter H.; Slavin, Steve (1991). Practical algebra: a self teaching guide. Wiley. ISBN 978-0-471-53012-1. 
  2. ^ а б Edwards, Harold M. (1995). Linear Algebra. Springer. стр. 47. ISBN 978-0-8176-3731-6. 
  3. ^ Salomon, David (2006). Coding for Data and Computer Communications. Springer. стр. 459. ISBN 978-0-387-23804-3. 
  4. ^ а б Introduction to Algebra (на језику: енглески). Yale University Press. 1965. стр. 621. „Any two such polynomials can be added, subtracted, or multiplied. Furthermore , the result in each case is another polynomial 
  5. ^ а б Barbeau 2003, стр. 1–2
  6. ^ Kriete, Hartje (1998-05-20). Progress in Holomorphic Dynamics (на језику: енглески). CRC Press. стр. 159. ISBN 978-0-582-32388-9. „This class of endomorphisms is closed under composition, 
  7. ^ Marecek, Lynn; Mathis, Andrea Honeycutt (6. 5. 2020). Intermediate Algebra 2e. OpenStax. §7.1. 
  8. ^ Haylock, Derek; Cockburn, Anne D. (2008-10-14). Understanding Mathematics for Young Children: A Guide for Foundation Stage and Lower Primary Teachers (на језику: енглески). SAGE. стр. 49. ISBN 978-1-4462-0497-9. „We find that the set of integers is not closed under this operation of division. 
  9. ^ а б Marecek & Mathis 2020, §5.4]
  10. ^ Selby, Peter H.; Slavin, Steve (1991). Practical Algebra: A Self-Teaching Guide (2nd изд.). Wiley. ISBN 978-0-471-53012-1. 
  11. ^ Weisstein, Eric W. „Ruffini's Rule”. mathworld.wolfram.com (на језику: енглески). Приступљено 2020-07-25. 

Литература

Спољашње везе