2 Basics of Polynomials

Size: px
Start display at page:

Download "2 Basics of Polynomials"

Transcription

1 Algebraic Geodesy and Geoinformatics PART I - METHODS 2 Basics of Polynomials 2-1 Representations of Polynomials List of monomials In Geodesy and Geoinformatics, most observations are related to the unknowns through equations of algebraic (polynomial) type. Let us consider the following univariate polynomial, poly Clear@"Global *"D poly = a + b - c x ^ 2; with variables, var = x; Test whether poly is a polynomial, PolynomialQ@poly, vard A polynomial is a multivariate product of monomials of the form x1 Α1 x2 Α2...xn Αn, where (Α1,...,Αn ) Î Zn in the variables x1,..., xn. Monomials of the polynomial poly, vard 9- c x2, a + b= The polynomial can be reconstructed from the monomials, Apply@Plus, %D a + b - c x2 Let us consider the following multivariable polynomial, polym = a0 + a1 x1 + a2 x2 + a3 x12 + a4 x22 + a5 x1 x2; with variables, varm = 8x1, x2<; Test it,

2 2 Basics_of_Polynomials_02.nb PolynomialQpolym, varm Monomials of this polynomial, MonomialListpolym, varm a3 x1 2, a5 x1 x2, a1 x1, a4 x2 2, a2 x2, a0 The polynomial can be reconstructed, ApplyPlus, a0 a1 x1 a3 x1 2 a2 x2 a5 x1 x2 a4 x List of coefficients of power of variable(s) A list of coefficients of powers of variables in polynomial, starting with power 0. coeffs CoefficientList poly, var a b, 0, c The polynomial can be reconstructed, FromDigitsReversecoeffs, var a b c x 2 In multivariable case, the list of coefficients of powers of variables (x1, x2) in polynomial, starting with power 0 (see reconstruction) coeffs CoefficientList polym, varm a0, a2, a4, a1, a5, 0, a3, 0, 0 Reconstruction a0, a2, a4.x1 0 x2 0, x1 0 x2 1, x1 0 x2 2 a1, a5, 0.x1 1 x2 0, x1 1 x2 1, x1 1 x2 2 a3, 0, 0.x1 2 x2 0, x1 2 x2 1, x1 2 x2 2 a0 a1 x1 a3 x1 2 a2 x2 a5 x1 x2 a4 x2 2 or employing the list of coefficients and the list of variables, FoldFromDigitsReverse1, 2 &, coeffs, varm Expand a0 a1 x1 a3 x1 2 a2 x2 a5 x1 x2 a4 x2 2 One may use different symbols for variables, FoldFromDigitsReverse1, 2 &, coeffs, x, y Expand a0 a1 x a3 x 2 a2 y a5 x y a4 y List of exponent vectors and coefficients of variable(s) The list of exponent vectors and coefficients for the monomial in polynomial with respect to the variable(s)

3 Basics_of_Polynomials_02.nb CoefficientRules poly, var 2 c, 0 a b FromCoefficientRules, x a b c x 2 In multivariable case, CoefficientRules polym, varm 2, 0 a3, 1, 1 a5, 1, 0 a1, 0, 2 a4, 0, 1 a2, 0, 0 a0 Reconstruction of the polynomial FromCoefficientRules, x1, x2 a0 a1 x1 a3 x1 2 a2 x2 a5 x1 x2 a4 x Polynomial Degree Let us consider the following polynomials p 2 x x ^ 3 y ^ 2 y ^ 2; It can be represented as a list of exponent vectors and coefficients of variables x and y, CoefficientRules p, x, y 3, 2 1, 1, 0 2, 0, 2 1 and Map1, 2 &, CoefficientRules p, x, y 3, 2, 1, 1, 0, 2, 0, 2, 1 The monomials are x 3 y 2, with coefficient 1, and x 1 y 0 with coefficient 2 and x 0, y 2 with coeffient 1. The degree of such a monomial is defined as the sum of the involved exponents of the variables. For example, the first monomial x 3 y 2, has degree = 5, etc. The degree of the polynomial is the maximum degree of its constituent monomials. In this case max( 5, 1, 2) = 5. In Mathematica one may define the following function to compute the degree of a polynomial, MultivariatePolynomDegree poly_, var_ : MaxMapApplyPlus, &, Map1 &, Map1, 2 &, CoefficientRules poly, var applying it to polynomial p MultivariatePolynomDegree p, x, y 5 Given m algebraic (polynomial) observational equations, where m is the dimension of the observation space Y of order L in n variables (unknowns) (where n is the dimension of the parameter space X, the application of algebraic least squares solution (ALESS) to the algebraic observation equations gives (2 L - 1) as the degree of the set of nonlinear algebraic normal equations. There exists n normal equations of the polynomial degree (2 L - 1) to be solved.

4 4 Basics_of_Polynomials_02.nb Example. (Pseudo-ranging problem). For pseudo-ranging or distance equations, the degree of the polynomials in the algebraic observational equations is L = 2. If we take the pseudo-ranges squared or distances squared, a necessary procedure in order to make the observational equations algebraic or polynomial, and implement ALESS, the objective function which is of degree L = 4 reduces by one to degree L = 3 upon differentiating once. The normal equations are of degree L = 3 as expected. Let us consider the following polynomials (now in this case n = m) f1 x1 2 2 a12 x1 x2 x2 2 a0; f2 x2 2 2 b23 x2 x3 x3 2 b0; f3 x3 2 2 c31 x3 x1 x1 2 c0; Let us consider f1, f2 and f3 as observational equations, then their degree L MapMultivariatePolynomDegree, x1, x2, x3 &, f1, f2, f3 2, 2, 2 The objective function and its degree g f1 2 f2 2 f3 2 ; MultivariatePolynomDegree g, x1, x2, x3 4 Differentiating to get the normal equations Eqs MapDg, &, x1, x2, x3; their degrees are indeed MapMultivariatePolynomDegree, x1, x2, x3 &, Eqs 3, 3, 3 2 L 1 3, 3, Operations "Addition" and "Multiplication" Addition is associative f1 f2 f3 f1 f2 f3 Zero element exists f1 0 f1 Inverse exists f1 f1 0

5 Basics_of_Polynomials_02.nb It is commutative f1 f2 f2 f1 Multiplication is associative f1 f2 f3 f1 f2 f3 Identity element exists f1 1 f1 Multiplication is distributive for addition f1 f2 f3 f1 f2 f1 f3 Simplify 2-4 Polynomial Divison Definition (Polynomial division). Consider the polynomial ring k[x] whose elements are polynomials f (x) and g (x). There exists unique polynomials p(x) and r(x) also elements of polynomial ring k[x] such that f (x) = g (x) p (x) + r (x), with either r(x) = 0 or degree of r(x) is less than the degree of g(x). Let us consider the following two univariate polynomials, f x 2 ; The quotient g 1 2 x; q PolynomialQuotient f, g, x 1 4 x 2 the remainder r PolynomialRemainder f, g, x 1 4 indeed g q r f Simplify and MultivariatePolynomDegree g, x MultivariatePolynomDegree r, x

6 6 Basics_of_Polynomials_02.nb In multivariate case f x 2 y x y 2 3 x 2 y 2 3 x y 3 ; g x y x 2 ; the quotient in respect of variable x q PolynomialQuotient f, g, x y 3 y 2 the remainder r PolynomialRemainder f, g, x y 2 3 y 3 x y 2 y 2 3 y 3 indeed g q r f Simplify and again MultivariatePolynomDegree g, x MultivariatePolynomDegree r, x However, this relation is not true when we consider both variables (x, y) MultivariatePolynomDegree g, x, y MultivariatePolynomDegree r, x, y False Now, considering the other variable, y q PolynomialQuotient f, g, y x 3 3 x 4 3 x 5 x 3 x 3 y 3 x y 2 r PolynomialRemainder f, g, y x 4 2 x 5 6 x 6 3 x 7 indeed g q r f Simplify and MultivariatePolynomDegree g, y MultivariatePolynomDegree r, y but again MultivariatePolynomDegree g, x, y MultivariatePolynomDegree r, x, y False

7 Basics_of_Polynomials_02.nb 2-5 Factoring Polynomials In order to understand the factorization of polynomials, it is essential to revisit some of the properties of prime numbers of integers. This is due to the fact that polynomials behave like integers. Whereas for integers, any integer n > 1 is either prime (i.e. can only be factored by 1 and n itself) or a product of prime numbers, a polynomial f (x) k[x] is either irreducible in k[x] or factors as a product of irreducible polynomials in the field k[x]. Let us consider the following polynomial and test it whether irreducible over rationals, but IrreduciblePolynomialQ x 3 1 False Factorx x 1 x x 2 IrreduciblePolynomialQ 1 x x 2 However, this polynomial is not irreducible over algebraic number 3 1 IrreduciblePolynomialQ 1 x x 2, Extension 3 1 False because Solve1 x x 2 0, x x 1 13, x 1 23 In multivariable case f x 2 y x y 2 3 x 2 y 2 3 x y 3 ; fc Factorf x y x y 1 3 y the inverse operation Expandfc x 2 y x y 2 3 x 2 y 2 3 x y 3 These two multivariate polynomials are irreducibles over rationals IrreduciblePolynomialQ x ^ 2 2 y ^ 4, x ^ 4 3 y ^ 2, but over 3, the second polynomial is not irreducible, IrreduciblePolynomialQ x ^ 4 3 y ^ 2, Extension 3 False

8 8 Basics_of_Polynomials_02.nb indeed Factorx ^ 4 3 y ^ 2, Extension x2 3 y 3 x 2 3 y Let us factorize the following polynomials of three variables over the rational numbers p 9 y2 33 x y2 184 x2 y 2 96 x3 y x4 y x5 y 2 3 y3 8 x y3 192 x2 y x 3 y x4 y x 3 y z y 3 z 2 y4 12 x y4 48 x2 y 4 64 x3 y 4 9 y z x y z x2 y z 2 5 x4 y z x5 y z 2 3 y2 z x y3 z x2 y 3 z x3 y 3 z 2 9 z x y 2 z x2 y 2 z x3 y 2 z x4 y 2 z 2 33 x z x2 z 4 15 x3 z 4 9 x 4 z x 5 z 4 3 y z x y z4 3 x 2 y z 4 6 x 3 y z 4 4 x 4 y z 4 y2 z x y2 z x2 y 2 z 4 x 3 y 2 z 4 ; pf Factorp 1 4 x x 2 y 2 8 y 5 z One may try to factorize a polynomial over real numbers, too Factorx ^ 3 x ^ x x x x 2 However, the result can be incorrect! Considering the real representation of the polynomials of three variables pr Np 0.09 y x y x 2 y x 3 y x 4 y x 5 y y x y x 2 y x 3 y x 4 y y x y x 2 y x 3 y y z x y z x 2 y z x 3 y z x 4 y z x 5 y z y 2 z 2 2. x y 2 z x 2 y 2 z x 3 y 2 z x 4 y 2 z y 3 z x y 3 z x 2 y 3 z x 3 y 3 z z x z x 2 z x 3 z 4 9. x 4 z 4 4. x 5 z y z x y z 4 3. x 2 y z 4 6. x 3 y z 4 4. x 4 y z y 2 z x y 2 z x 2 y 2 z 4 1. x 3 y 2 z 4 Factorpr y x y x 2 y x 3 y 2 9. x 4 y 2 4. x 5 y y x y 3 3. x 2 y 3 6. x 3 y 3 4. x 4 y y x y x 2 y 4 1. x 3 y y z x y z x 2 y z x 3 y z x 4 y z 2 5. x 5 y z y 2 z x y 2 z x 2 y 2 z x 3 y 2 z 2 5. x 4 y 2 z y 3 z x y 3 z x 2 y 3 z x 3 y 3 z z x z x 2 z x 3 z x 4 z x 5 z y z x y z x 2 y z x 3 y z x 4 y z y 2 z x y 2 z x 2 y 2 z x 3 y 2 z 4 Length 2 Now, we have only two factors instead of three! Therefore it is better to rationalize the coefficients before factoring,

9 Basics_of_Polynomials_02.nb myfactorx_ : NFactorMapAllRationalize, 0 &, x, Precisionx myfactorpr x x 2. y 2 8. y 5. z 2 2 indeed Npf x x 2. y 2 8. y 5. z 2 2 As we have seen sometimes factoring over integer (rational, real) numbers is not possible, p 3 x ^ 3 7 x ^ 2 9; Factorp 9 7 x 2 3 x 3 IrreduciblePolynomialQ p In that case we can factor it approximately. Let us consider the solution Solve3 x ^ 3 7 x ^ 2 9 0, x x , x x , 13 Now we can use the algebraic number as extension Factorp, Extension x x x 2 in form of real numbers

10 10 Basics_of_Polynomials_02.nb or N, x x x 2 Expand x x x 2 We have got the approximate factoring in form of real number, which can be written in rational form Rationalize, x x x Let us check this result, NExpand x 7. x 2 3. x 3 elinimating numerical error, indeed Chop x 2 3. x Polynomial Roots More often than not, the most encountered interaction with polynomials is the solution of a polynomial equations in terms of finding their roots. As an example, consider the simple planar ranging case where distances are measured from two known points to an unknown station. In such a case, the measured distances are normally related to the unknown station coordinates by multivariate quadratic equations whose intersection leads to the solution of two univariate quadratic equations. If for instance point P 1 whose coordinates are {x 1, y 1 } is occupied and distance s 1 measured to another point P 0 whose coordinates {x 0, y 0 } are unknown, the relationship between the measured distance and the coordinates would be the multivariate quadratic polynomial, or and similarly eq1 a x0 2 b x0 c 0; Clearf eq2 d y0 2 ey0 f 0; Solving this system, it is clear, that solution can exist over reals, but considering the physical problem, cannot exist over complexes.

11 Basics_of_Polynomials_02.nb Solveeq1, eq2, x0, y0 y0 ey0 f d, x0 b b2 4 a c 2 a, y0 ey0 f d, x0 b b2 4 a c 2 a, y0 ey0 f d, x0 b b2 4 a c 2 a, y0 ey0 f d, x0 b b2 4 a c 2 a Let us look for the solution of the following polynomial over integers eq y ; Reduceeq, y, Integers False which means, there is no solution over integers, Reduceeq, y, Rationals False even no solution over rationals. However it has solution over real numbers Reduceeq, y, Reals y 2 3 y 2 3 The following equation has solution over rational numbers, Reducey 2 9 0, y, Rationals y 3 y 3 This equation has solution over complex number, but has not over reals, Reducey 2 9 0, y, Reals False Reducey 2 9 0, y, Complexes y 3 y 3 Polynomials with degree higher than four, in general, have solution only over algebraic numbers represented by the roots of irreducible polynomials over rational. Remark: A polynomial p(x) is irreducible if there do not exist nonconstant polynomials p 1 (x), p 2 (x) such that p = p 1 p 2. sol Reduce 14 x 6 x 12 0, x, Complexes x Root &, 1 x Root &, 2 x Root &, 3 x Root &, 4 x Root &, 5 x Root &, 6 For example, the first polynomial Firstsol x Root &, 1

12 12 Basics_of_Polynomials_02.nb First2x 12 x 14 x 6 IrreduciblePolynomialQ 12 x 14 x 6 This can be solved approximately via numerical method with a prespecified precision NSolve12 x 14 x 6, x, WorkingPrecision 201 x Minimal Polynomials We presented the number ring concept and extended the sets from the sets of natural numbers to the set of complex number in order to cater for expanded operations. For polynomials, the roots may fail to exist in one set say but exist in another set. The polynomial y 2-2 for example, has no roots in but the roots exist in. Reducey 2 2 0, Rationals False Reducey 2 2 0, Reals y 2 y 2 The expansion of the set from to is also called field extension of k. It may occur however that in the polynomial ring k[x], the solution Ξ satisfies not only the polynomial p(x) but also another polynomial h(x), where p(x) and h(x) are both elements of k[x]. In case several polynomials in k[x] have Ξ as a root and the polynomials are multiples of the polynomial of least degree that also contains Ξ as root, the polynomial of least degree is termed the minimal polynomial. Let us construct a polynomial with a root 1 2, which polynomial has lowest degree minpoly MinimalPolynomial Sqrt1 Sqrt2, x 1 2 x 2 x 4 p1 Plotminpoly, x, 2, 2, Epilog Red, PointSizeLarge, PointSqrt1 Sqrt2, Fig. 2.1 The minimal polynomial for the root 1 2 Another polynomial, which has this root too, but having higher degree

13 Basics_of_Polynomials_02.nb poly minpoly x 1 x Expand x x 2 2 x 3 2 x 4 x 5 x 6 p2 Plotpoly, x, 2, 2, Epilog Blue, PointSizeLarge, Point1, 0, Point0, 0, Red, PointSizeLarge, PointSqrt1 Sqrt2, 0; Showp2, p Fig. 2.2 Another polynomial with the root 1 2, but it is not minimal polynomial for this root Solvepoly 0, x x 0, x 1, x 1 2, x 1 2, x 1 2, x 1 2 or Reducepoly 0, x, Rationals 1 2 Rationals && x Rationals && x 1 2 x 0 x 1 Minimal polynomials for different numbers b 3; Headb Integer MinimalPolynomial b, x 3 x b 5 2 ; Headb Rational MinimalPolynomial b, x 5 2 x b ; Headb Complex

14 14 Basics_of_Polynomials_02.nb MinimalPolynomial b, x x 16 x 2 b 2 5 ; AlgebraicIntegerQ b Representation of algebraic numbers as elements of a finite extension of rationals is the following, ToNumberFieldb AlgebraicNumber Root &, 4, 0, 1, 0, 0 Polynomial in x corresponding to the algebraic number object MinimalPolynomial b, x 9 14 x 2 x 4 Approximate solution NSolve 0, x x , x , x , x indeed, b in real form, b N and b as algebraic number is really root of the minimal polynomial, 9 14 x 2 x 4. x b Simplify 0 Let us consider {a 1,...,a n algebraic numbers. One has to define { f 1 (z),..., f n (z)}, f i [z] polynomials with rational coeffients and a b algebraic number like f i (b) = a i, i =1,...n. This is an algebraic field extention of [z] with b as a primitive element, Let a 1 and a 2 be two algebraic numbers, a ; a2 Sqrt3; Here is the function, which creates the polynomials f i and b for a i, PrimitiveElement z_, algs_list : Moduleans ToNumberFieldalgs, aa, IfListQans, aa Selectans, Head AlgebraicNumber &; ans Ifaa, 1, aa1, 1, AlgebraicNumberPolynomial ans, z; ans ; ListQans; b, f PrimitiveElement z, a1, a2; The algebraic number b b Root &, 4 The two polynomials with rational coefficients

15 Basics_of_Polynomials_02.nb f z 9 z3 z5 z z 63 z3 7 z5 z7, Substituting b into the first polynomials f1. z b Root &, Root &, Root &, Root &, 4 7 The reduced form RootReduce Root &, and we get a 1 ToRadicals Similarly f2. z b 4081 Root &, Root &, Root &, Root &, The reduced form RootReduce 3 now we get directly a 2 because it is real number.

16 16 Basics_of_Polynomials_02.nb 2-8 Univariate Polynomials with Real Coefficients Quadratic Polynomials We shall see later, that the solution of a system of polynomial equations can be reduced to the solution of a univariate polynomial. Therefore it is useful to study the solution of polynomials with a single variable. We revisit the various types of univariate polynomials with the coefficients in the field, which we often use to manipulate our measurements. We recapture the basic high school mathematics of inferring the roots of the polynomials from the coeffiients. Polynomials of degree 2 are known as quadratic polynomials. For univariate cases, they take the form ax 2 + bx + c = 0. The general solution of quadratic equations given by the quadratic formula or This is a solution indeed, substituting it into the equation Simplifya x 2 b x c. x 0 b 2 c b 2 4 a c If a and c are small numbers, the possibility of the numerical error is increasing, since we should substract numbers which are nearly the same. In that case, it is better to use the following formula, 2 Remark: Sign(x) gives 1, 0 or 1 depending on whether x is negative, zero, or positive. then Let us consider a quadratic polynomial with the following coefficients a 1 The exact solution is ; b 12; c ; 10 7

17 Basics_of_Polynomials_02.nb Solve x2 12 x 2 0, x 7 10 x , x The approximated value of the smallest root with 25 digits 1 N, Employing the standard formula with 5 digits, b SetPrecision b or using 25 digits 4 a c 2 a, 5 b SetPrecision b a c 2 a, 25 Using the special formula with 5 digits N 1 2 c b Signb b 2 4 a c, In general, every quadratic polynomial has exactly two real or two complex roots. From the coefficients, if b 2-4 ac > 0, the roots are real but if b 2-4 ac < 0 the roots are a pair of non real complex numbers.the case where b 2-4 ac = 0 gives real and identical roots and is also known as the bifurcation point upon which the roots change sign. Let us consider the pairs of roots of the equation : as function of the parameter c on the complex plain!

18 18 Basics_of_Polynomials_02.nb ListPlotAppendRe1, Im1 & FlattenTablex. NSolve2 x 2 5 x c 0, x, c, 2.5, 3.5, 0.02, 5 4, 0, Axes False, Frame, FrameLabel "Real", "Imaginery" where 2.5 c 3.5 with increment The critical value of parameter c is Fig. 2.3 The roots of 2 x 2 5 x c = 0 as function of the parameter c, in range 2.5 c 3.5 c cirt then Solve2 x 2 5 x c cirt 0, x x 5 4, x 5 4 If c c cirt then the roots are reals, while c > c cirt the roots are complex. Let us consider, 0.1; Solve2 x 2 5 x c cirt 0, x x , x Solve2 x 2 5 x c cirt 0, x x , x In stability analysis of a dynamical system this critical parameter has vital importance Cubic Polynomials The polynomials of degree 3 take the form Considering a = 1, the solution is,

19 Basics_of_Polynomials_02.nb 13 2 b 2 13 Clearb, c, d Solvex 3 b x 2 c x d 0, x x b 2 13 b 2 3 c b 3 9 b c 27 d 3 3 b 2 c 2 4 c 3 4 b 3 d 18 b c d 27 d b c 27 d 3 3 b 2 c 4 c 3 4 b 3 d 18 b c d 27 d , x b 1 3 b 2 3 c b 3 9 b c 27 d 3 3 b 2 c 2 4 c 3 4 b 3 d 18 b c d 27 d , x b 1 3 b 2 3 c b 3 9 b c 27 d 3 3 b 2 c 2 4 c 3 4 b 3 d 18 b c d 27 d b 3 9 b c 27 d 3 3 b 2 c 2 4 c 3 4 b 3 d 18 b c d 27 d 2 13 the discriminant D from the coefficients b, c, d as If D > 0 then the roots of the cubic polynomial are real and distinct. If D < 0, then one of the roots is real and the remaining two non real complex conjugate. In a case where D = 0, multiple roots all which are real are given. In case the coefficients b, c, d are all positive, then all of the three roots will be negative while if b, d are negative and c positive, all of the roots will be positive Quartic Polynomials Quartic polynomials are those of degree 4. For example, one of the solution in case of a = 1 sol Solvex 4 b x 3 c x 2 d x e 0, x;

20 20 Basics_of_Polynomials_02.nb sol1 Simplify x b 3 3 b 2 8 c c 2 3 b d 12 e 2 c 3 9 b c d 27 d 2 27 b 2 e 72 c e 4 c 2 3 b d 12 e 3 2 c 3 9 c b d 8 e 27 d 2 b 2 e c 3 9 b c d 27 d 2 27 b 2 e 72 c e 4 c 2 3 b d 12 e 3 2 c 3 9 c b d 8 e 27 d 2 b 2 e b 2 8 c c 2 3 b d 12 e 2 c 3 9 b c d 27 d 2 27 b 2 e 72 c e 4 c 2 3 b d 12 e 3 2 c 3 9 c b d 8 e 27 d 2 b 2 e c 3 9 b c d 27 d 2 27 b 2 e 72 c e 4 c 2 3 b d 12 e 3 2 c 3 9 c b d 8 e 27 d 2 b 2 e b 3 4 b c 8 d 3 b 2 8 c c 2 3 b d 12 e 2 c 3 9 b c d 27 d 2 27 b 2 e 72 c e 4 c 2 3 b d 12 e 3 2 c 3 9 c b d 8 e 27 d 2 b 2 e c 3 9 b c d 27 d 2 27 b 2 e 72 c e 4 c 2 3 b d 12 e 3 2 c 3 9 c b d 8 e 27 d 2 b 2 e 2 13 The discriminant term, 4 c 2 3 b d 12 e 3 2 c 3 9 c b d 8 e 27 d 2 b 2 e 2 Expand 27 b 2 c 2 d c 3 d b 3 d b c d d b 2 c 3 e 432 c 4 e 486 b 3 c d e 2160 b c 2 d e 162 b 2 d 2 e 3888 c d 2 e 729 b 4 e b 2 c e c 2 e b d e e 3 Usually we consider its normalized form 27 Expand b 2 c 2 d 2 4 c 3 d 2 4 b 3 d 3 18 b c d 3 27 d 4 4 b 2 c 3 e 16 c 4 e 18 b 3 c d e 80 b c 2 d e 6 b 2 d 2 e 144 c d 2 e 27 b 4 e b 2 c e c 2 e b d e e 3 - > 0: four different real solutions or two complex cunjugate solutions - < 0: two different real solutions and one complex cunjugate solution - = 0: at least two of solutions are the same

21 Basics_of_Polynomials_02.nb 21 This can be computed with Mathematica, Discriminant Ax4 + b x3 + c x2 + d x + e, xe b2 c2 d2-4 c3 d2-4 b3 d b c d3-27 d4-4 b2 c3 e + 16 c4 e + 18 b3 c d e 80 b c2 d e - 6 b2 d2 e c d2 e - 27 b4 e b2 c e2-128 c2 e2-192 b d e e3 2-9 Methods for Investigating Roots Logaritmic and Contour Plots on Complex Plane Here we introduce two graphical and an algebraic - numeric method to find roots of polynomials. Let us consider the following polynomial f = z z z z z5 ; Ploting the logaritmic of the absolute value of f (z) + 1 on the complex plain. We use this additive constant to avoid singularity at abs( f(z)) = 0. Plot3D@Log@Abs@f. 8z x + ä y<d + 1D, 8x, - 0.5, 1<, 8y, - 3, 2<, PlotPoints 61, Mesh False, AxesLabel 8"ReHzL", "ImHzL", None<, PlotRange All, Ticks 8None, None, None<, ViewPoint , , <D ReHzL ImHzL Fig. 2.4 The surface of the function log(abs (f (z)) + 1) on the complex plain. The "holes" on the surface show the approximate positions of the roots. To get better approximation, we can display Re(f(z)) = 0 and Im(f(z)) = 0 contours on the complex plain. The cross points of these contours represent locations of the roots. sol = NSolve@f 0, zd; zz = z. sol , ä, ä, ä, ä<

22 22 Basics_of_Polynomials_02.nb ShowContourPlotRef. z x I y, x, 0.5, 1, y, 3, 2, Contours 0, ContourShading False, DisplayFunction Identity, ContourStyle RGBColor1, 0, 0, Thickness0.001, PlotPoints 61, ContourPlotImf. z x I y, x, 0.5, 1, y, 3, 2, Contours 0, ContourShading False, DisplayFunction Identity, PlotPoints 61, ContourStyle RGBColor0, 0, 1, Thickness0.001, GraphicsPointSize0.02, PointRe1, Im1 & zz, DisplayFunction $DisplayFunction, FrameTicks None, FrameLabel "Rez", "Imz" Imz Fig. 2.5 The contour plot of f(z) on the complex plain. Along the lines the real and imaginary parts are zero Isograph Simulator Let us consider the exponential form of the complex numbers z = r i Φ, and display f(z) as function of Φ at constant r. Changing r value, find the proper r value at which the curve of f(z) crosses the origin of the coordinate system of the complex plane (0, 0). The function IsoGraphSimulator simulates this process. The numerical values of the roots are computed via NSolve. IsoGraphSimulator eqn_equal, var_ : Modulep, Show GraphicsGridAppendPartition1, 3, Complement1, FlattenPartition1, 3 & ParametricPlotEvaluateRe1, Im1 &Subtract eqn. var 1 Exp p, p, 0, 2 Π, AspectRatio Automatic, Axes, FrameTicks False, Frame, AxesOrigin 0, 0, PlotPoints 20, PlotStyle RGBColor1, 0, 0, PlotLabel "" ToStringvar " " ToStringN1, 3, DisplayFunction Identity & Sortx. NSolveeqn, var, Abs1 Abs2 &

23 Basics_of_Polynomials_02.nb IsoGraphSimulator[(f/.z->x)==0, x] Fig. 2.6 The roots of f(z) displayed by isograph simulator Application of Inverse Series We consider the x = r(y), as the inverse mapping of y = f (x). Then the roots of f(x) can be computed as r(0), while f(r(0)) = 0. In order to illustrate the idea let us consider the power series expansion for following second order polynomial, about the point x = 0 to order four, Cleara Seriesa x ^ 2 b x c, x, 0, 4 c b x a x 2 Ox 5 The inverse series provides the approximation of the inverse function r(y), r InverseSeries, y y c a y c2 b b 3 2 a2 y c3 b 5 The r (0) gives the root of the polynomial f (x) Normalr. y 0 c b a c2 b 3 2 a2 c3 b 5 5 a3 c4 b 7 5 a3 y c4 b 7 Oy c 5 One may recognize that the k 1 th term can be expressed as

24 24 Basics_of_Polynomials_02.nb -c^(k + 1) / b^(2k + 1) a^k Binomial[2 k, k]/(k + 1) ak b 12 k c 1k Binomial2 k, k 1 k Then, for example, considering the first four terms, we get Sumc^k 1 b ^ 2 k 1 a ^ k Binomial2 k, k k 1, k, 0, 3 c b a c2 b 3 2 a2 c3 b 5 5 a3 c4 However, with infinity terms we get the analytical solution b 7 Sumc^k 1 b ^ 2 k 1 a ^ k Binomial2 k, k k 1, k, 0, Infinity b 1 b 2 4 a c b 2 2 a Now we can apply this method to the polynomial considered as an example, the inverse SeriesNf, z, 0, z z z z z 5 Oz 21 r InverseSeries, y y y y y y y y y y y y y y y y y y y y y Oy One of the real root is Normalr. y Using this root, we can reduce the order of our polynomial to a quartic ff PolynomialQuotient f, z, z z z z z 4 The remainder close to zero PolynomialRemainder f, z, z Then we can use factoring to reduce this quartic. Do not forget that quintic can not be factored in general! Factorf z z z z z 5 However

25 Basics_of_Polynomials_02.nb Factorff z z z z 2 The roots of the second order polynomials NSolve2 0, z z , z NSolve3 0, z z , z Now, we have all of the roots. In special case, canonical form (quintic) x 5 - x - Ρ inverse series method can provide even analytical solution. Let us apply the method r = InverseSeries[Series[x^5 - x - Ρ, {x, 0, 15}], y]; Normal[r] /. y -> 0 Ρ Ρ 5 5 Ρ 9 35 Ρ 13 Now the general term of the approximating series then - Ρ^(4k + 1) Binomial[5k, k] / (4k + 1) Ρ14 k Binomial5 k, k 1 4 k Sum Ρ^4 k 1 Binomial5 k, k 4 k 1, k, 0, 3 Ρ Ρ 5 5 Ρ 9 35 Ρ 13 Considering infinite terms sol=sum[- Ρ^(4k + 1) Binomial[5k, k] / (4k + 1), {k, 0, Infinity}] Ρ HypergeometricPFQ 1 5, 2 5, 3 5, 4 5, 1 2, 3 4, Ρ4, Now, for example, let us to solve fff 3 z z 5 3 z z 5 Employing our result we get a complex root, m sol. Ρ Then we can reduce the quintic to a third order polynomial ffff PolynomialQuotient fff, z m z Conjugatem, z z z 2 z 3 PolynomialRemainder fff, z m z Conjugatem, z z

26 26 Basics_of_Polynomials_02.nb Chop 0 Further reduction can be achieved with factoring Factorffff Chop z z z 2-10 The zeros of Polynomial Systems Bezout s Theorem In one variable case, the polynomial, has d roots, counting multiplicities, in the field of complex numbers according to the fundamental theorem of algebra. However in multivariable case, the situation is more complicated. To keep the discussion easy and transparent, we consider a system of two polynomials. Let us consider the following system, G a 1 a 2 x a 3 x y a 4 y; H b 1 b 2 x 2 y b 3 x y 2 ; BØzout s Theorem: Consider two polynomial equations in two unknowns: g(x,y) = h(x,y) = 0. If this system has only finitely many zeros (x, y) 2, then the number of zeros is at most deg(g)* deg(h). Here deg(g) and deg(h) are the total degree of g(x,y) and h(x,y), respectively, see Section 2.2 Bezout Theorem is the best possible in the sense that almost all polynomial systems have deg(g)* deg(h) distinct solutions. degg MultivariatePolynomDegree G, x, y 2 degh MultivariatePolynomDegree H, x, y 3 These two polynomials have precisely four distinct zeros (x, y) 2 for generic choices of coefficients a i and b j. It means that a certain polynomial in the coefficients a i, b j, called the discriminant, should be non- zero. The discriminant can be computed as, R ResultantG, H, x; S FactorResultantR, DR, y, y;

27 Basics_of_Polynomials_02.nb discriminantgh LastS 4 a 2 a 3 3 a 4 4 b 1 3 b 2 3 a 1 2 a 3 2 a 4 4 b 1 2 b a 1 a 2 a 3 a 4 5 b 1 2 b a 2 2 a 4 6 b 1 2 b a 1 3 a 4 5 b 1 b a 2 a 3 6 a 4 b 1 4 b 2 b 3 4 a 1 2 a 3 5 a 4 b 1 3 b 2 2 b 3 96 a 1 a 2 a 3 4 a 4 2 b 1 3 b 2 2 b a 2 2 a 3 3 a 4 3 b 1 3 b 2 2 b 3 22 a 1 3 a 3 3 a 4 2 b 1 2 b 2 3 b 3 94 a 1 2 a 2 a 3 2 a 4 3 b 1 2 b 2 3 b a 1 a 2 2 a 3 a 4 4 b 1 2 b 2 3 b a 2 3 a 4 5 b 1 2 b 2 3 b 3 22 a 1 4 a 3 a 4 3 b 1 b 2 4 b 3 14 a 1 3 a 2 a 4 4 b 1 b 2 4 b 3 4 a 1 2 a 2 a 3 5 b 1 3 b 2 b a 1 a 2 2 a 3 4 a 4 b 1 3 b 2 b a 2 3 a 3 3 a 4 2 b 1 3 b 2 b 3 2 a 1 4 a 3 4 b 1 2 b 2 2 b a 1 3 a 2 a 3 3 a 4 b 1 2 b 2 2 b a 1 2 a 2 2 a 3 2 a 4 2 b 1 2 b 2 2 b a 1 a 2 3 a 3 a 4 3 b 1 2 b 2 2 b a 2 4 a 4 4 b 1 2 b 2 2 b a 1 5 a 3 2 a 4 b 1 b 2 3 b a 1 4 a 2 a 3 a 4 2 b 1 b 2 3 b a 1 3 a 2 2 a 4 3 b 1 b 2 3 b 3 2 a 1 6 a 4 2 b 2 4 b a 2 4 a 3 3 a 4 b 1 3 b a 1 3 a 2 2 a 3 3 b 1 2 b 2 b a 1 2 a 2 3 a 3 2 a 4 b 1 2 b 2 b a 1 a 2 4 a 3 a 4 2 b 1 2 b 2 b a 2 5 a 4 3 b 1 2 b 2 b a 1 5 a 2 a 3 2 b 1 b 2 2 b a 1 4 a 2 2 a 3 a 4 b 1 b 2 2 b a 1 3 a 2 3 a 4 2 b 1 b 2 2 b a 1 7 a 3 b 2 3 b a 1 6 a 2 a 4 b 2 3 b 3 3 a 1 2 a 2 4 a 3 2 b 1 2 b a 1 a 2 5 a 3 a 4 b 1 2 b a 2 6 a 4 2 b 1 2 b a 1 4 a 2 3 a 3 b 1 b 2 b a 1 3 a 2 4 a 4 b 1 b 2 b 3 4 a 1 6 a 2 2 b 2 2 b a 1 3 a 2 5 b 1 b 3 5 MultivariatePolynomDegree discriminantgh, a 1, a 2, a 3, a 4, b 1, b 2, b 3, b 4 14 If this polynomial of degree 14 is non- zero, then the system {G(x, y) = 0, H(x, y) = 0} has four distinct complex zeros. Here the function Resultant computes the resultant of the two polynomials, see Section and more details in Chapter Bernstein s Theorem Bezout s theorem would predict 2*3 = 6 common complex zeros for our system. Indeed, in projective geometry we would expect the cubic curve ( H = 0) and the quadratic curve (G = 0) to intersect in six points. To understand why is four and not six let us consider convex polygons associated with our system. A polytope is a subset of n which is the convex hull of a finite set of points. A 2-dimensional polytope is called polygon. Considering a polynomial f(x,y), Each term x u i y v i can be regarded as a lattice point u i, v i in the plane 2. The convex hull of all these points is called the Newton polygon of f (x, y). Let us express it as, This is a polygon in 2 having at most m vertices. In general, every polynomial in n unknowns can be represented by a Newton polytope in n. Let us consider the Newton polygons of our systems. The Newton polygon of the polynomial G is quadrangel with points (0,0), (1,0),(1,1) and (0,1), while that of the polynomial H is a triangle (0,0), (2,1), (1,2), see Fig. 2.7.

28 28 Basics_of_Polynomials_02.nb Fig. 2.7 Mixed area of Newton-polygons of the two polynomials The Minkowski sum of the two polygons, P and Q in the plane is, P + Q = {p + q : p P, q Q} The Newton polygon of the product of two polynomials is the Minkowski sum of the Newton polyon of these two polynomials, namely The product of the two polynomials, G H Expand New (G*H) = New (G) + New (H) a 1 b 1 x a 2 b 1 x y a 3 b 1 y a 4 b 1 x 2 y a 1 b 2 x 3 y a 2 b 2 x 3 y 2 a 3 b 2 x 2 y 2 a 4 b 2 x y 2 a 1 b 3 x 2 y 2 a 2 b 3 x 2 y 3 a 3 b 3 x y 3 a 4 b 3 The corresponding points can be seen on Fig So the Minkowski sum of the polygons mirrors the algebraic operation of multiplying polynomials. If P and Q are any two polygons then their mixed area can be defined as it follows, In our case, (P, Q) = area (P + Q) - area (P) - area (Q) 2 2 This number coincides with the number of common zeros of G and H. This is not an accident, but is an instance of the general theorem of Bernstein. Bernstein s Theorem: If G and H are two generic bivariate polynomials, then the number of non-zero solutions of G(x,y) = H(x,y) =0 in 2 equals the mixed area (New (G), New (H)). It is remarkable that Bezout s theorem follows as a special case from Bernstein s theorem. Namely, if g and h a general polynomials of degree d and e respectively,

29 Basics_of_Polynomials_02.nb then their Newton polygons are triangles, P = New (g) = conv ((0, 0), (0, d), (d, 0)) Q = New (h) = conv ((0, 0), (0, e), (e, 0)) P + Q = New (g* h) = conv ((0, 0), (0, d + e), (d + e, 0)) The areas of these triangles are, d 2 /2, e 2 /2, d e 2 /2, and hence Hence two general plane curves of degree d and e meet in d*c points Computation zeros of Polynomial Systems Resultants Elimination theory deals with the problem of eliminating one or more variables from a system of polynomial equations, thus reducing the problem to a smaller problem in fewer variables. For instance, if we wish to solve, U a 0 a 1 x a 2 x 2 ; V b 0 b 1 x b 2 x 2 ; U = V = 0 with a 2 0 and b 2 0 then we can eliminate the variable x to get, EliminateU 0, V 0, x Expand a 0 a 2 b a 0 a 2 b 0 b 2 a 0 a 1 b 1 b 2 a 0 2 b 2 2 a 2 2 b 0 2 a 1 a 2 b 0 b 1 a 1 2 b 0 b 2 This polynomial of of degree 4 is the resultant. It vanishes if and only if the given quadratic polynomials have common complex root x. ResultantU, V, x a 2 2 b 0 2 a 1 a 2 b 0 b 1 a 0 a 2 b 1 2 a 1 2 b 0 b 2 2 a 0 a 2 b 0 b 2 a 0 a 1 b 1 b 2 a 0 2 b 2 2 Consider two polynomials in two variables, G(x, y) and H(x, y). Let us eliminate y ResGH y ResultantG, H, y x 2 a 3 2 b 1 2 x a 3 a 4 b 1 a 4 2 b 1 x 3 a 1 a 3 b 2 x 4 a 2 a 3 b 2 x 2 a 1 a 4 b 2 x 3 a 2 a 4 b 2 x a 1 2 b 3 2 x 2 a 1 a 2 b 3 x 3 a 2 2 b 3 We get an univariate polynomial in x of degree 4, which should be zero, Similarly, MapExponentResGH y, &, x, y 4, 0

30 30 Basics_of_Polynomials_02.nb ResGH x ResultantG, H, x a 2 2 b 1 2 y a 2 a 3 b 1 y 2 a 3 2 b 1 y a 1 2 b 2 2 y 2 a 1 a 4 b 2 y 3 a 4 2 b 2 y 2 a 1 a 2 b 3 y 3 a 1 a 3 b 3 y 3 a 2 a 4 b 3 y 4 a 3 a 4 b 3 So the two multivariate polynomials can be separated into two univariate polynomials. This resultant method can be extended for case n > 2 and various determinantal formulas are known for multivariate resultant, see Chapter Groebner Basis Let K be a field, K be its algebraic closure, R = K[x,y] be the algebra of polynomials in the variables {x, y}. Let G (x, y) and H (x, y) Ε R. Our objective is to solve the system f = G= H= 0. Let I be the ideal generated by G and H. Then exist polynomials g and h, that and similarly G (x, y)= Α g(x, y) + Β h (x, y) H (x, y) = Γ g (x, y) + h (x, y) If the basis {G, H} then the trivial coefficients are Α = = 1 and Γ = Β = 0. However, we can find other set of {g, h} polynomials as basis for the ideal. Groebner basis can provide a special basis, which is triangular, namely e.g., G (x, y)= Α gr 1 (x) + Β gr 2 (x, y) = {Α, Β}.{gr 1 (x), gr 2 (x, y)} where {Α, Β} is a not vanishing coefficient vector. Therefore {G, H} = 0 implies that {gr 1 (x), gr 2 (x, y)}= 0, and vica versa. This triangular system {gr 1 (x), gr 2 (x, y)}= 0 can be solved by successive elimination. In our case the Groebner basis of the ideal generated by G(x, y) and H(x, y) is, gr GroebnerBasisG, H, x, y; TableFormgr a 2 2 b 1 2 y a 2 a 3 b 1 y 2 a 3 2 b 1 y a 1 2 b 2 2 y 2 a 1 a 4 b 2 y 3 a 4 2 b 2 y 2 a 1 a 2 b 3 y 3 a 1 a 3 b 3 y 3 a 2 a 4 b 3 y 4 a 3 a 4 b 3 a 2 a 2 3 b 1 y a 3 3 b 1 a 2 1 a 3 b 2 x a 1 a 2 a 3 b 2 a 1 a 2 a 4 b 2 x a 2 2 a 4 b 2 2 y a 1 a 3 a 4 b 2 y a 2 a 2 4 b 2 y 2 a 3 a 2 4 b 2 y 2 a 1 a 2 3 b 3 y 3 a 2 3 a 4 b 3 a 1 x a 2 x y a 3 y a 4 a 2 a 3 b 1 y a 3 2 b 1 a 1 2 b 2 x a 1 a 2 b 2 2 y a 1 a 4 b 2 x y a 2 a 4 b 2 y 2 a 4 2 b 2 y 2 a 1 a 3 b 3 y 3 a 3 a 4 b 3 a 2 b 1 y a 3 b 1 x y a 1 b 2 x y 2 a 4 b 2 y 2 a 1 b 3 y 3 a 4 b 3 a 3 b 1 x a 1 b 2 x 2 a 2 b 2 x y a 4 b 2 y a 1 b 3 x y a 2 b 3 y 2 a 4 b 3 b 1 x 2 y b 2 x y 2 b 3 This is a triangular system for x and y, TransposeMapExponentgr, &, x, y MatrixForm G can be expressed in this basis. The corresponding coefficient vector is c and the r is the remainder, which should be zero, since G belonging to the ideal,

31 Basics_of_Polynomials_02.nb indeed Similarly and c 1, r PolynomialReduce G, gr, x, y a 3 2, a 1 a 2 a 3 b 2 a 2 2 a 4 b 2 c 1.gr r G Simplify a 2 a 1 a 2 a 3 b 2 a 2 2 a 4 b 2 c 2, r PolynomialReduce H, gr, x, y y a 3 x a 3 y a 3 a 2 4 b 2 a 1 a 2 a 3 a 2 2 a 4 a 1 a 2 a 3 a 2 2 a 4 a 1 a 3 b 2 a 2 a 4 b 2 a 1 a 2 a 3 b 2 a 2 2 a 4 b 2, 0, 0, 0, 0, 0, 0 a 3 3 b 1 a 1 a 3 a 4 b 2 a 2 a 2 4 b 2 y 2 a 2 3 a 4 b 3, a 1 a 2 a 3 a 2 2 a 4 a 1 a 3 b 2 a 2 a 4 b 2 a 1 a 2 a 3 a 2 2 a 4 a 1 a 3 b 2 a 2 a 4 b 2 x y a 1 a 2 a 3 a 2 2 a 4 a 2 a 3 b 1 y a 2 3 b 1 a 1 a 4 b 2 a 1 a 2 a 3 a 2 2 a 4 a 1 a 3 b 2 a 2 a 4 b 2 a 1 a 2 a 3 a 2 2 a 4 a 1 a 3 b 2 a 2 a 4 b 2 y 3 a 3 a 4 b 3 y 2 a 2 4 b 2 a 2 a 4 b 3, 0, 0, 0, 0, 0, 0 a 1 a 2 a 3 a 2 2 a 4 a 1 a 3 b 2 a 2 a 4 b 2 a 1 a 2 a 3 a 2 2 a 4 a 1 a 3 b 2 a 2 a 4 b 2 c 2.gr r H Simplify We can carry out the solution of the triangular Groebner basis directly, (computing Groebner basis followed by elimination) e.g. eliminating y from the Groebner basis to get x, and similarly gry GroebnerBasisG, H, x, y, y x 2 a 3 2 b 1 2 x a 3 a 4 b 1 a 4 2 b 1 x 3 a 1 a 3 b 2 x 4 a 2 a 3 b 2 x 2 a 1 a 4 b 2 x 3 a 2 a 4 b 2 x a 1 2 b 3 2 x 2 a 1 a 2 b 3 x 3 a 2 2 b 3 grx GroebnerBasisG, H, x, y, x a 2 2 b 1 2 y a 2 a 3 b 1 y 2 a 3 2 b 1 y a 1 2 b 2 2 y 2 a 1 a 4 b 2 y 3 a 4 2 b 2 y 2 a 1 a 2 b 3 y 3 a 1 a 3 b 3 y 3 a 2 a 4 b 3 y 4 a 3 a 4 b 3 which equal with the first polynomial in the Groebner basis, grx gr1 Simplify This is called reduced Groebner basis corresponding to variables x and y, respetively. Let us compare the result of the resultants, ResGH y and ResGH x., and ResGH y gry Simplify

32 32 Basics_of_Polynomials_02.nb ResGH x grx Simplify Further details about Groebner basis and its computation can be found in Chapter Homotopy Method This method is originated from numerical algebraic geometry and belongs to the general class of numerical continuation method. The method operates in two stages. Firtsly, it exploits the structure of the system f(x) = 0 to find a root count (see Bezout s and Bernstein Theorem) and construct a start system g(x) = 0 that has exactly as many regular solutions as the root count. This start system is embedded in the homotopy, with Γ a random number. Let the system to be solved, f 1 x 2 4 y 2 4; f 2 2 y 2 x; h (x, t) = Γ (1 - t) g (x) + t f (x) = 0, t [0, 1] an obvious the start system having the same polynomial degree, g 1 x 2 1; g 2 y 2 1; Forming homotopy function, Γ RandomReal ; H 1 Γ g 1 1 t f 1 t; H 2 Γ g 2 1 t f 2 t; Let us solve this system from t = 0 (x =1, y = 1) up to t =1 employing Newton- Raphson method. Tracing the first path from x 0 1, y 0 1 : t 0.2; x 0 1; y 0 1; sol FindRootH 1 0, H 2 0, x, x 0, y, y 0 x , y t 0.4; x 0 x. sol1; y 0 y. sol2; sol FindRootH 1 0, H 2 0, x, x 0, y, y 0 x , y t 0.6; x 0 x. sol1; y 0 y. sol2; sol FindRootH 1 0, H 2 0, x, x 0, y, y 0 x , y

33 Basics_of_Polynomials_02.nb t 0.8; x 0 x. sol1; y 0 y. sol2; sol FindRootH 1 0, H 2 0, x, x 0, y, y 0 x , y t 1.; x 0 x. sol1; y 0 y. sol2; sol FindRootH 1 0, H 2 0, x, x 0, y, y 0 x , y Eliminating small imaginary parts, Chop x , y Checking the result f 1, f 2. 0., Tracing the second path from x 0 1, y 0 1 : t 0.2; x 0 1; y 0 1; sol FindRootH 1 0, H 2 0, x, x 0, y, y 0 x , y t 0.4; x 0 x. sol1; y 0 y. sol2; sol FindRootH 1 0, H 2 0, x, x 0, y, y 0 x , y t 0.6; x 0 x. sol1; y 0 y. sol2; sol FindRootH 1 0, H 2 0, x, x 0, y, y 0 x , y t 0.8; x 0 x. sol1; y 0 y. sol2; sol FindRootH 1 0, H 2 0, x, x 0, y, y 0 x , y t 1.; x 0 x. sol1; y 0 y. sol2;

34 34 Basics_of_Polynomials_02.nb sol FindRootH 1 0, H 2 0, x, x 0, y, y 0 x , y Eliminating small imaginary parts, Chop x , y Checking the result f 1, f 2. 0., The other two paths belong to the x 0 1, y 0 1 and x 0 1, y 0 1 initial conditions. We can employ GeoAlgebra package to solve the problem. First let us to load the package, GeoAlgebra LinearHomotopy The function we shall use LinearHomotopyFR,? LinearHomotopyFR Computes the homotopy paths with direct path tracing. Input parameters: F list of functions of the target system, G list of functions of the start system, X list of variables, X0 list of initial values, Γ list of complex weigths, n number of subintervals, Λ dummy variable. Output variables: sol1 list of the solutions, sol2 list of homotopy paths Therefore F f 1, f 2 ; G g 1, g 2 ; X x, y; X0 1, 1, 1, 1, 1, 1, 1, 1; Γ 1, 1 ; sol LinearHomotopyFR F, G, X, X0, Γ, 100, Λ; sol , , , , , , , These pairs are solution of the system, Mapf 1, f 2. x 1, y 2 &, sol1 0., , 0., 0., 0., , 0., 0. The visualization of the paths can be achieved by the function Paths,

35 Basics_of_Polynomials_02.nb 35? Paths Display homotopy paths. Input parameters: X list of variables, sol list of homotopy paths, X0 list of initial values PathsX, sol2, X0, Λ Im Im Im Im Im xλ Re Im yλ Re Fig. 2.8 Homotopy paths belonging to the different solutions of the start system Employing Global Numerical Solver (GNS), built - in Mathematica, we get, NSolvef 1, f 2, x, y x , y , x , y , x , y , x , y A computational advantage of the homotopy method that the tracing of the different paths can be carried out simultaneously and independently, consequently the homotopy is a parallel algorithm by nature. See further details in Chapter 5.

36 36 Basics_of_Polynomials_02.nb A computational advantage of the homotopy method that the tracing of the different paths can be carried out simultaneously and independently, consequently the homotopy is a parallel algorithm by nature. See further details in Chapter 5.

5 Linear Homotopy. 5-1 Introduction

5 Linear Homotopy. 5-1 Introduction Algebraic Geodesy and Geoinformatics - 2009 PART I METHODS 5 Linear Homotopy 5-1 Introduction Most often, there exist a fundamental task of solving systems of equations in geodesy. In such cases, many

More information

The original expression can be written as, 4-2 Greatest common divisor of univariate polynomials. Let us consider the following two polynomials.

The original expression can be written as, 4-2 Greatest common divisor of univariate polynomials. Let us consider the following two polynomials. Algebraic Geodesy and Geoinformatics 2009 PART I - METHODS 4 Groebner Basis 4- Greatest common divisor of integers Let us consider the following integer numbers 2, 20 and 8. Factorize them, Clear@"Global

More information

Complex Numbers: Definition: A complex number is a number of the form: z = a + bi where a, b are real numbers and i is a symbol with the property: i

Complex Numbers: Definition: A complex number is a number of the form: z = a + bi where a, b are real numbers and i is a symbol with the property: i Complex Numbers: Definition: A complex number is a number of the form: z = a + bi where a, b are real numbers and i is a symbol with the property: i 2 = 1 Sometimes we like to think of i = 1 We can treat

More information

11 Ranging by Global Navigation Satellite Systems (GNSS)

11 Ranging by Global Navigation Satellite Systems (GNSS) Algebraic Geodesy and Geoinformatics - 2009 - PART II APPLICATIONS 11 Ranging by Global Navigation Satellite Systems (GNSS) Overview First the observation equations are developed for implicit and explicit

More information

Solving Quadratic Equations Review

Solving Quadratic Equations Review Math III Unit 2: Polynomials Notes 2-1 Quadratic Equations Solving Quadratic Equations Review Name: Date: Period: Some quadratic equations can be solved by. Others can be solved just by using. ANY quadratic

More information

Solving Algebraic Computational Problems in Geodesy and Geoinformatics

Solving Algebraic Computational Problems in Geodesy and Geoinformatics Solving Algebraic Computational Problems in Geodesy and Geoinformatics The Answer to Modern Challenges Bearbeitet von Joseph L Awange, Erik W Grafarend 1. Auflage 2004. Buch. XVII, 333 S. Hardcover ISBN

More information

CHAPTER 2 POLYNOMIALS KEY POINTS

CHAPTER 2 POLYNOMIALS KEY POINTS CHAPTER POLYNOMIALS KEY POINTS 1. Polynomials of degrees 1, and 3 are called linear, quadratic and cubic polynomials respectively.. A quadratic polynomial in x with real coefficient is of the form a x

More information

Section September 6, If n = 3, 4, 5,..., the polynomial is called a cubic, quartic, quintic, etc.

Section September 6, If n = 3, 4, 5,..., the polynomial is called a cubic, quartic, quintic, etc. Section 2.1-2.2 September 6, 2017 1 Polynomials Definition. A polynomial is an expression of the form a n x n + a n 1 x n 1 + + a 1 x + a 0 where each a 0, a 1,, a n are real numbers, a n 0, and n is a

More information

17 Affine Mapping. Overview

17 Affine Mapping. Overview Algebraic Geodesy and Geoinformatics - 2009 - PART II APPLICATIONS 17 Affine Mapping Overview The number of equations of the 3 - point problem can be reduced to 6 equations by eliminating the 3 translation

More information

Chapter 3. Rings. The basic commutative rings in mathematics are the integers Z, the. Examples

Chapter 3. Rings. The basic commutative rings in mathematics are the integers Z, the. Examples Chapter 3 Rings Rings are additive abelian groups with a second operation called multiplication. The connection between the two operations is provided by the distributive law. Assuming the results of Chapter

More information

Deducing Polynomial Division Algorithms using a Groebner Basis

Deducing Polynomial Division Algorithms using a Groebner Basis Deducing Polynomial Division Algorithms using a Groebner Basis In the previous Chapter I discussed a method of finding the real root of an associated cubic polynomial using a modular function, the eta

More information

Reading Mathematical Expressions & Arithmetic Operations Expression Reads Note

Reading Mathematical Expressions & Arithmetic Operations Expression Reads Note Math 001 - Term 171 Reading Mathematical Expressions & Arithmetic Operations Expression Reads Note x A x belongs to A,x is in A Between an element and a set. A B A is a subset of B Between two sets. φ

More information

Chapter Five Notes N P U2C5

Chapter Five Notes N P U2C5 Chapter Five Notes N P UC5 Name Period Section 5.: Linear and Quadratic Functions with Modeling In every math class you have had since algebra you have worked with equations. Most of those equations have

More information

Polynomial and Rational Functions. Chapter 3

Polynomial and Rational Functions. Chapter 3 Polynomial and Rational Functions Chapter 3 Quadratic Functions and Models Section 3.1 Quadratic Functions Quadratic function: Function of the form f(x) = ax 2 + bx + c (a, b and c real numbers, a 0) -30

More information

Modeling Data. 27 will get new packet. 24 Mixed Practice 3 Binomial Theorem. 23 Fundamental Theorem March 2

Modeling Data. 27 will get new packet. 24 Mixed Practice 3 Binomial Theorem. 23 Fundamental Theorem March 2 Name: Period: Pre-Cal AB: Unit 1: Polynomials Monday Tuesday Block Friday 11/1 1 Unit 1 TEST Function Operations and Finding Inverses 16 17 18/19 0 NO SCHOOL Polynomial Division Roots, Factors, Zeros and

More information

Reference Material /Formulas for Pre-Calculus CP/ H Summer Packet

Reference Material /Formulas for Pre-Calculus CP/ H Summer Packet Reference Material /Formulas for Pre-Calculus CP/ H Summer Packet Week # 1 Order of Operations Step 1 Evaluate expressions inside grouping symbols. Order of Step 2 Evaluate all powers. Operations Step

More information

ALGEBRA 2. Background Knowledge/Prior Skills Knows what operation properties hold for operations with matrices

ALGEBRA 2. Background Knowledge/Prior Skills Knows what operation properties hold for operations with matrices ALGEBRA 2 Numbers and Operations Standard: 1 Understands and applies concepts of numbers and operations Power 1: Understands numbers, ways of representing numbers, relationships among numbers, and number

More information

1. Algebra 1.5. Polynomial Rings

1. Algebra 1.5. Polynomial Rings 1. ALGEBRA 19 1. Algebra 1.5. Polynomial Rings Lemma 1.5.1 Let R and S be rings with identity element. If R > 1 and S > 1, then R S contains zero divisors. Proof. The two elements (1, 0) and (0, 1) are

More information

Chapter 3: Polynomial and Rational Functions

Chapter 3: Polynomial and Rational Functions Chapter 3: Polynomial and Rational Functions 3.1 Polynomial Functions A polynomial on degree n is a function of the form P(x) = a n x n + a n 1 x n 1 + + a 1 x 1 + a 0, where n is a nonnegative integer

More information

, a 1. , a 2. ,..., a n

, a 1. , a 2. ,..., a n CHAPTER Points to Remember :. Let x be a variable, n be a positive integer and a 0, a, a,..., a n be constants. Then n f ( x) a x a x... a x a, is called a polynomial in variable x. n n n 0 POLNOMIALS.

More information

Algebra II Vocabulary Word Wall Cards

Algebra II Vocabulary Word Wall Cards Algebra II Vocabulary Word Wall Cards Mathematics vocabulary word wall cards provide a display of mathematics content words and associated visual cues to assist in vocabulary development. The cards should

More information

STANDARDS OF LEARNING CONTENT REVIEW NOTES ALGEBRA II. 2 nd Nine Weeks,

STANDARDS OF LEARNING CONTENT REVIEW NOTES ALGEBRA II. 2 nd Nine Weeks, STANDARDS OF LEARNING CONTENT REVIEW NOTES ALGEBRA II 2 nd Nine Weeks, 2016-2017 1 OVERVIEW Algebra II Content Review Notes are designed by the High School Mathematics Steering Committee as a resource

More information

Course Name: MAT 135 Spring 2017 Master Course Code: N/A. ALEKS Course: Intermediate Algebra Instructor: Master Templates

Course Name: MAT 135 Spring 2017 Master Course Code: N/A. ALEKS Course: Intermediate Algebra Instructor: Master Templates Course Name: MAT 135 Spring 2017 Master Course Code: N/A ALEKS Course: Intermediate Algebra Instructor: Master Templates Course Dates: Begin: 01/15/2017 End: 05/31/2017 Course Content: 279 Topics (207

More information

Now let us consider the solutions of the combinatorial pairs. the weights are the square of the corresponding determinants,

Now let us consider the solutions of the combinatorial pairs. the weights are the square of the corresponding determinants, Algebraic Geodesy and Geoinformatics - 2009 - PART I METHODS 7 Gauss- Jacobi Combinatorial Algorithm 7-1 Linear model Another technique to solve overdetermined system is proposed by Gauss and Jacobi. The

More information

Pre AP Algebra. Mathematics Standards of Learning Curriculum Framework 2009: Pre AP Algebra

Pre AP Algebra. Mathematics Standards of Learning Curriculum Framework 2009: Pre AP Algebra Pre AP Algebra Mathematics Standards of Learning Curriculum Framework 2009: Pre AP Algebra 1 The content of the mathematics standards is intended to support the following five goals for students: becoming

More information

Section 3.1 Quadratic Functions

Section 3.1 Quadratic Functions Chapter 3 Lecture Notes Page 1 of 72 Section 3.1 Quadratic Functions Objectives: Compare two different forms of writing a quadratic function Find the equation of a quadratic function (given points) Application

More information

16 Conformal Mapping. Overview

16 Conformal Mapping. Overview Algebraic Geodesy and Geoinformatics - 2009 - PART II APPLICATIONS 16 Conformal Mapping Overview First, the 3- point problem is discussed. A preliminary elimination of the translation vector reduces the

More information

Algebra 2 Math Curriculum Pacing Guide (Revised 2017) Amherst County Public Schools. Suggested Sequence of Instruction and Pacing

Algebra 2 Math Curriculum Pacing Guide (Revised 2017) Amherst County Public Schools. Suggested Sequence of Instruction and Pacing Algebra 2 Math Curriculum Pacing Guide (Revised 2017) Amherst County Public Schools Suggested Sequence of Instruction and Pacing 1st 9-weeks Unit 1 - Solving Equations and Inequalities (including absolute

More information

Dividing Polynomials: Remainder and Factor Theorems

Dividing Polynomials: Remainder and Factor Theorems Dividing Polynomials: Remainder and Factor Theorems When we divide one polynomial by another, we obtain a quotient and a remainder. If the remainder is zero, then the divisor is a factor of the dividend.

More information

Ch 7 Summary - POLYNOMIAL FUNCTIONS

Ch 7 Summary - POLYNOMIAL FUNCTIONS Ch 7 Summary - POLYNOMIAL FUNCTIONS 1. An open-top box is to be made by cutting congruent squares of side length x from the corners of a 8.5- by 11-inch sheet of cardboard and bending up the sides. a)

More information

Algebra 2 Honors Curriculum Pacing Guide

Algebra 2 Honors Curriculum Pacing Guide SOUTH CAROLINA ACADEMIC STANDARDS FOR MATHEMATICS The mathematical processes provide the framework for teaching, learning, and assessing in all high school mathematics core courses. Instructional programs

More information

Instructional Unit Basic Statistics Algebra II #309 Unit Content Objective Performance Indicator Performance Task State Standards Code:

Instructional Unit Basic Statistics Algebra II #309 Unit Content Objective Performance Indicator Performance Task State Standards Code: Algebra II Instructional Unit Basic Statistics -Displaying data with dotplots and The students will be -Use scientific or graphing -Classroom discussion 2.1.11.A stemplots. able to evaluate calculator

More information

Semester Review Packet

Semester Review Packet MATH 110: College Algebra Instructor: Reyes Semester Review Packet Remarks: This semester we have made a very detailed study of four classes of functions: Polynomial functions Linear Quadratic Higher degree

More information

ACCRS/QUALITY CORE CORRELATION DOCUMENT: ALGEBRA II

ACCRS/QUALITY CORE CORRELATION DOCUMENT: ALGEBRA II ACCRS/QUALITY CORE CORRELATION DOCUMENT: ALGEBRA II Revised May 2013 Perform arithmetic operations with complex numbers. 1. [N-CN1] Know there is a complex number i such that i 2 = 1, and every complex

More information

Check boxes of Edited Copy of Sp Topics (was 217-pilot)

Check boxes of Edited Copy of Sp Topics (was 217-pilot) Check boxes of Edited Copy of 10024 Sp 11 213 Topics (was 217-pilot) College Algebra, 9th Ed. [open all close all] R-Basic Algebra Operations Section R.1 Integers and rational numbers Rational and irrational

More information

Beginning Algebra. 1. Review of Pre-Algebra 1.1 Review of Integers 1.2 Review of Fractions

Beginning Algebra. 1. Review of Pre-Algebra 1.1 Review of Integers 1.2 Review of Fractions 1. Review of Pre-Algebra 1.1 Review of Integers 1.2 Review of Fractions Beginning Algebra 1.3 Review of Decimal Numbers and Square Roots 1.4 Review of Percents 1.5 Real Number System 1.6 Translations:

More information

Algebra 2. Curriculum (524 topics additional topics)

Algebra 2. Curriculum (524 topics additional topics) Algebra 2 This course covers the topics shown below. Students navigate learning paths based on their level of readiness. Institutional users may customize the scope and sequence to meet curricular needs.

More information

Algebra I. Book 2. Powered by...

Algebra I. Book 2. Powered by... Algebra I Book 2 Powered by... ALGEBRA I Units 4-7 by The Algebra I Development Team ALGEBRA I UNIT 4 POWERS AND POLYNOMIALS......... 1 4.0 Review................ 2 4.1 Properties of Exponents..........

More information

Copyright 2018 UC Regents and ALEKS Corporation. ALEKS is a registered trademark of ALEKS Corporation. 2/10

Copyright 2018 UC Regents and ALEKS Corporation. ALEKS is a registered trademark of ALEKS Corporation. 2/10 Prep for Calculus This course covers the topics outlined below. You can customize the scope and sequence of this course to meet your curricular needs. Curriculum (281 topics + 125 additional topics) Real

More information

COMPUTER ARITHMETIC. 13/05/2010 cryptography - math background pp. 1 / 162

COMPUTER ARITHMETIC. 13/05/2010 cryptography - math background pp. 1 / 162 COMPUTER ARITHMETIC 13/05/2010 cryptography - math background pp. 1 / 162 RECALL OF COMPUTER ARITHMETIC computers implement some types of arithmetic for instance, addition, subtratction, multiplication

More information

Polynomial Functions

Polynomial Functions Polynomial Functions Polynomials A Polynomial in one variable, x, is an expression of the form a n x 0 a 1 x n 1... a n 2 x 2 a n 1 x a n The coefficients represent complex numbers (real or imaginary),

More information

Section 0.2 & 0.3 Worksheet. Types of Functions

Section 0.2 & 0.3 Worksheet. Types of Functions MATH 1142 NAME Section 0.2 & 0.3 Worksheet Types of Functions Now that we have discussed what functions are and some of their characteristics, we will explore different types of functions. Section 0.2

More information

MINKOWSKI THEORY AND THE CLASS NUMBER

MINKOWSKI THEORY AND THE CLASS NUMBER MINKOWSKI THEORY AND THE CLASS NUMBER BROOKE ULLERY Abstract. This paper gives a basic introduction to Minkowski Theory and the class group, leading up to a proof that the class number (the order of the

More information

Operations w/polynomials 4.0 Class:

Operations w/polynomials 4.0 Class: Exponential LAWS Review NO CALCULATORS Name: Operations w/polynomials 4.0 Class: Topic: Operations with Polynomials Date: Main Ideas: Assignment: Given: f(x) = x 2 6x 9 a) Find the y-intercept, the equation

More information

MATH Spring 2010 Topics per Section

MATH Spring 2010 Topics per Section MATH 101 - Spring 2010 Topics per Section Chapter 1 : These are the topics in ALEKS covered by each Section of the book. Section 1.1 : Section 1.2 : Ordering integers Plotting integers on a number line

More information

King Fahd University of Petroleum and Minerals Prep-Year Math Program Math Term 161 Recitation (R1, R2)

King Fahd University of Petroleum and Minerals Prep-Year Math Program Math Term 161 Recitation (R1, R2) Math 001 - Term 161 Recitation (R1, R) Question 1: How many rational and irrational numbers are possible between 0 and 1? (a) 1 (b) Finite (c) 0 (d) Infinite (e) Question : A will contain how many elements

More information

Math Review for AP Calculus

Math Review for AP Calculus Math Review for AP Calculus This course covers the topics shown below. Students navigate learning paths based on their level of readiness. Institutional users may customize the scope and sequence to meet

More information

Math Prep for Statics

Math Prep for Statics Math Prep for Statics This course covers the topics shown below. Students navigate learning paths based on their level of readiness. Institutional users may customize the scope and sequence to meet curricular

More information

How many solutions are real? How many solutions are imaginary? What are the solutions? (List below):

How many solutions are real? How many solutions are imaginary? What are the solutions? (List below): 1 Algebra II Chapter 5 Test Review Standards/Goals: F.IF.7.c: I can identify the degree of a polynomial function. F.1.a./A.APR.1.: I can evaluate and simplify polynomial expressions and equations. F.1.b./

More information

Equations and Inequalities

Equations and Inequalities Algebra I SOL Expanded Test Blueprint Summary Table Blue Hyperlinks link to Understanding the Standards and Essential Knowledge, Skills, and Processes Reporting Category Algebra I Standards of Learning

More information

Parent Guide. Number System. Diocese of Cleveland

Parent Guide. Number System. Diocese of Cleveland Parent Guide Grade Eight Algebra Curriculum Diocese of Cleveland Below is a list of skills your child will be taught in Grade Eight Algebra. As parents, you are encouraged to support the work of your child

More information

Algebra II Vocabulary Alphabetical Listing. Absolute Maximum: The highest point over the entire domain of a function or relation.

Algebra II Vocabulary Alphabetical Listing. Absolute Maximum: The highest point over the entire domain of a function or relation. Algebra II Vocabulary Alphabetical Listing Absolute Maximum: The highest point over the entire domain of a function or relation. Absolute Minimum: The lowest point over the entire domain of a function

More information

Algebra 2 Curriculum Guide Lunenburg County Public Schools June 2014

Algebra 2 Curriculum Guide Lunenburg County Public Schools June 2014 Marking Period: 1 Days: 5 Reporting Category/Strand: Equations & Inequalities SOL AII.4a The student will solve, algebraically and graphically, a) absolute value equations and inequalities Graphing calculars

More information

Course: Algebra MP: Reason abstractively and quantitatively MP: Model with mathematics MP: Look for and make use of structure

Course: Algebra MP: Reason abstractively and quantitatively MP: Model with mathematics MP: Look for and make use of structure Algebra Cluster: Interpret the structure of expressions. A.SSE.1: Interpret expressions that represent a quantity in terms of its context (Modeling standard). a. Interpret parts of an expression, such

More information

Lesson 7.1 Polynomial Degree and Finite Differences

Lesson 7.1 Polynomial Degree and Finite Differences Lesson 7.1 Polynomial Degree and Finite Differences 1. Identify the degree of each polynomial. a. 3x 4 2x 3 3x 2 x 7 b. x 1 c. 0.2x 1.x 2 3.2x 3 d. 20 16x 2 20x e. x x 2 x 3 x 4 x f. x 2 6x 2x 6 3x 4 8

More information

(x 1, y 1 ) = (x 2, y 2 ) if and only if x 1 = x 2 and y 1 = y 2.

(x 1, y 1 ) = (x 2, y 2 ) if and only if x 1 = x 2 and y 1 = y 2. 1. Complex numbers A complex number z is defined as an ordered pair z = (x, y), where x and y are a pair of real numbers. In usual notation, we write z = x + iy, where i is a symbol. The operations of

More information

Algebra 1 Seamless Curriculum Guide

Algebra 1 Seamless Curriculum Guide QUALITY STANDARD #1: REAL NUMBERS AND THEIR PROPERTIES 1.1 The student will understand the properties of real numbers. o Identify the subsets of real numbers o Addition- commutative, associative, identity,

More information

First Quarter Second Quarter Third Quarter Fourth Quarter Unit 1: Expressions and Operations 2.5 weeks/6 blocks

First Quarter Second Quarter Third Quarter Fourth Quarter Unit 1: Expressions and Operations 2.5 weeks/6 blocks Algebra 1/Algebra 1 Honors Pacing Guide Focus: Third Quarter First Quarter Second Quarter Third Quarter Fourth Quarter Unit 1: Expressions and Operations 2.5 weeks/6 blocks Unit 2: Equations 2.5 weeks/6

More information

R1: Sets A set is a collection of objects sets are written using set brackets each object in onset is called an element or member

R1: Sets A set is a collection of objects sets are written using set brackets each object in onset is called an element or member Chapter R Review of basic concepts * R1: Sets A set is a collection of objects sets are written using set brackets each object in onset is called an element or member Ex: Write the set of counting numbers

More information

Algebra 1 Khan Academy Video Correlations By SpringBoard Activity and Learning Target

Algebra 1 Khan Academy Video Correlations By SpringBoard Activity and Learning Target Algebra 1 Khan Academy Video Correlations By SpringBoard Activity and Learning Target SB Activity Activity 1 Investigating Patterns 1-1 Learning Targets: Identify patterns in data. Use tables, graphs,

More information

NAME DATE PERIOD. Operations with Polynomials. Review Vocabulary Evaluate each expression. (Lesson 1-1) 3a 2 b 4, given a = 3, b = 2

NAME DATE PERIOD. Operations with Polynomials. Review Vocabulary Evaluate each expression. (Lesson 1-1) 3a 2 b 4, given a = 3, b = 2 5-1 Operations with Polynomials What You ll Learn Skim the lesson. Predict two things that you expect to learn based on the headings and the Key Concept box. 1. Active Vocabulary 2. Review Vocabulary Evaluate

More information

Mathematics High School Algebra

Mathematics High School Algebra Mathematics High School Algebra Expressions. An expression is a record of a computation with numbers, symbols that represent numbers, arithmetic operations, exponentiation, and, at more advanced levels,

More information

Maintaining Mathematical Proficiency

Maintaining Mathematical Proficiency Chapter Maintaining Mathematical Proficiency Simplify the expression. 1. 8x 9x 2. 25r 5 7r r + 3. 3 ( 3x 5) + + x. 3y ( 2y 5) + 11 5. 3( h 7) 7( 10 h) 2 2 +. 5 8x + 5x + 8x Find the volume or surface area

More information

Chapter 4. Remember: F will always stand for a field.

Chapter 4. Remember: F will always stand for a field. Chapter 4 Remember: F will always stand for a field. 4.1 10. Take f(x) = x F [x]. Could there be a polynomial g(x) F [x] such that f(x)g(x) = 1 F? Could f(x) be a unit? 19. Compare with Problem #21(c).

More information

Number Sense and Operations Strand

Number Sense and Operations Strand Number Sense and Operations Strand Students will understand numbers, multiple ways of representing numbers, relationships among numbers, and number systems. Number Theory NY A.N.1 Identify and apply the

More information

Check boxes of Edited Copy of Sp Topics (was 261-pilot)

Check boxes of Edited Copy of Sp Topics (was 261-pilot) Check boxes of Edited Copy of 10023 Sp 11 253 Topics (was 261-pilot) Intermediate Algebra (2011), 3rd Ed. [open all close all] R-Review of Basic Algebraic Concepts Section R.2 Ordering integers Plotting

More information

Alg Review/Eq & Ineq (50 topics, due on 01/19/2016)

Alg Review/Eq & Ineq (50 topics, due on 01/19/2016) Course Name: MAC 1140 Spring 16 Course Code: XQWHD-P4TU6 ALEKS Course: PreCalculus Instructor: Van De Car Course Dates: Begin: 01/11/2016 End: 05/01/2016 Course Content: 307 topics Textbook: Coburn: Precalculus,

More information

Prep for College Algebra

Prep for College Algebra Prep for College Algebra This course covers the topics outlined below. You can customize the scope and sequence of this course to meet your curricular needs. Curriculum (219 topics + 85 additional topics)

More information

( 3) ( ) ( ) ( ) ( ) ( )

( 3) ( ) ( ) ( ) ( ) ( ) 81 Instruction: Determining the Possible Rational Roots using the Rational Root Theorem Consider the theorem stated below. Rational Root Theorem: If the rational number b / c, in lowest terms, is a root

More information

Tropical Polynomials

Tropical Polynomials 1 Tropical Arithmetic Tropical Polynomials Los Angeles Math Circle, May 15, 2016 Bryant Mathews, Azusa Pacific University In tropical arithmetic, we define new addition and multiplication operations on

More information

Class 4: More Pendulum results

Class 4: More Pendulum results Class 4: More Pendulum results The pendulum is a mechanical problem with a long and interesting history, from Galileo s first ansatz that the period was independent of the amplitude based on watching priests

More information

Algebra III Chapter 2 Note Packet. Section 2.1: Polynomial Functions

Algebra III Chapter 2 Note Packet. Section 2.1: Polynomial Functions Algebra III Chapter 2 Note Packet Name Essential Question: Section 2.1: Polynomial Functions Polynomials -Have nonnegative exponents -Variables ONLY in -General Form n ax + a x +... + ax + ax+ a n n 1

More information

Cologne Academy. Mathematics Department Grade 8 Math (Algebra 1A) (Aligned Text: Holt McDougal Algebra 1) Core Knowledge Curriculum 61% Aligned

Cologne Academy. Mathematics Department Grade 8 Math (Algebra 1A) (Aligned Text: Holt McDougal Algebra 1) Core Knowledge Curriculum 61% Aligned Cologne Academy Mathematics Department Grade 8 Math (Algebra 1A) (Aligned Text: Holt McDougal Algebra 1) Core Knowledge Curriculum 61% Aligned Adopted: 08/2014 Board Approved: 08/28/2014 Updated: 08/22/2016

More information

Unit 5 Evaluation. Multiple-Choice. Evaluation 05 Second Year Algebra 1 (MTHH ) Name I.D. Number

Unit 5 Evaluation. Multiple-Choice. Evaluation 05 Second Year Algebra 1 (MTHH ) Name I.D. Number Name I.D. Number Unit Evaluation Evaluation 0 Second Year Algebra (MTHH 039 09) This evaluation will cover the lessons in this unit. It is open book, meaning you can use your textbook, syllabus, and other

More information

Give algebraic and numeric examples to support your answer. Which property is demonstrated when one combines like terms in an algebraic expression?

Give algebraic and numeric examples to support your answer. Which property is demonstrated when one combines like terms in an algebraic expression? Big Idea(s): Algebra is distinguished from arithmetic by the systematic use of symbols for values. Writing and evaluating expressions with algebraic notation follows the same rules/properties as in arithmetic.

More information

PreCalculus. Curriculum (447 topics additional topics)

PreCalculus. Curriculum (447 topics additional topics) PreCalculus This course covers the topics shown below. Students navigate learning paths based on their level of readiness. Institutional users may customize the scope and sequence to meet curricular needs.

More information

Section Properties of Rational Expressions

Section Properties of Rational Expressions 88 Section. - Properties of Rational Expressions Recall that a rational number is any number that can be written as the ratio of two integers where the integer in the denominator cannot be. Rational Numbers:

More information

Determine trigonometric ratios for a given angle in a right triangle.

Determine trigonometric ratios for a given angle in a right triangle. Course: Algebra II Year: 2017-18 Teacher: Various Unit 1: RIGHT TRIANGLE TRIGONOMETRY Standards Essential Questions Enduring Understandings G-SRT.C.8 Use 1) How are the The concept of trigonometric ratios

More information

Prep for College Algebra with Trigonometry

Prep for College Algebra with Trigonometry Prep for College Algebra with Trigonometry This course covers the topics outlined below. You can customize the scope and sequence of this course to meet your curricular needs. Curriculum (246 topics +

More information

A Partial List of Topics: Math Spring 2009

A Partial List of Topics: Math Spring 2009 A Partial List of Topics: Math 112 - Spring 2009 This is a partial compilation of a majority of the topics covered this semester and may not include everything which might appear on the exam. The purpose

More information

9. Integral Ring Extensions

9. Integral Ring Extensions 80 Andreas Gathmann 9. Integral ing Extensions In this chapter we want to discuss a concept in commutative algebra that has its original motivation in algebra, but turns out to have surprisingly many applications

More information

Section III.6. Factorization in Polynomial Rings

Section III.6. Factorization in Polynomial Rings III.6. Factorization in Polynomial Rings 1 Section III.6. Factorization in Polynomial Rings Note. We push several of the results in Section III.3 (such as divisibility, irreducibility, and unique factorization)

More information

Math 0320 Final Exam Review

Math 0320 Final Exam Review Math 0320 Final Exam Review SHORT ANSWER. Write the word or phrase that best completes each statement or answers the question. Factor out the GCF using the Distributive Property. 1) 6x 3 + 9x 1) Objective:

More information

Course: Algebra II Year: Teacher: various. Different types of

Course: Algebra II Year: Teacher: various. Different types of Course: Algebra II Year: 2016-2017 Teacher: various Unit 1: Functions Standards Essential Questions Enduring Understandings A.REI.D.10 1) What is a function A function is a special Understand that the

More information

MCPS Algebra II Pacing Guide

MCPS Algebra II Pacing Guide Units to be covered 1 st Semester: Units to be covered 2 nd Semester: Vocabulary Semester Class: 10 days Year Long: 20 days OR Unit: Functions & Graphs Include content with individual units SOL AII.6 Recognize

More information

Algebra 2 Khan Academy Video Correlations By SpringBoard Activity

Algebra 2 Khan Academy Video Correlations By SpringBoard Activity SB Activity Activity 1 Creating Equations 1-1 Learning Targets: Create an equation in one variable from a real-world context. Solve an equation in one variable. 1-2 Learning Targets: Create equations in

More information

We say that a polynomial is in the standard form if it is written in the order of decreasing exponents of x. Operations on polynomials:

We say that a polynomial is in the standard form if it is written in the order of decreasing exponents of x. Operations on polynomials: R.4 Polynomials in one variable A monomial: an algebraic expression of the form ax n, where a is a real number, x is a variable and n is a nonnegative integer. : x,, 7 A binomial is the sum (or difference)

More information

Lake Elsinore Unified School District Pacing Guide & Benchmark Assessment Schedule Algebra 1 Essentials

Lake Elsinore Unified School District Pacing Guide & Benchmark Assessment Schedule Algebra 1 Essentials 1.0 Students identify and use the arithmetic properties of subsets of integers, including closure properties for the four basic arithmetic operations where applicable: 1.1 Students use properties of numbers

More information

Algebra 2 Khan Academy Video Correlations By SpringBoard Activity

Algebra 2 Khan Academy Video Correlations By SpringBoard Activity SB Activity Activity 1 Creating Equations 1-1 Learning Targets: Create an equation in one variable from a real-world context. Solve an equation in one variable. 1-2 Learning Targets: Create equations in

More information

Tropical Algebraic Geometry 3

Tropical Algebraic Geometry 3 Tropical Algebraic Geometry 3 1 Monomial Maps solutions of binomial systems an illustrative example 2 The Balancing Condition balancing a polyhedral fan the structure theorem 3 The Fundamental Theorem

More information

CCSS Math- Algebra. Domain: Algebra Seeing Structure in Expressions A-SSE. Pacing Guide. Standard: Interpret the structure of expressions.

CCSS Math- Algebra. Domain: Algebra Seeing Structure in Expressions A-SSE. Pacing Guide. Standard: Interpret the structure of expressions. 1 Domain: Algebra Seeing Structure in Expressions A-SSE Standard: Interpret the structure of expressions. H.S. A-SSE.1a. Interpret expressions that represent a quantity in terms of its context. Content:

More information

Polynomials, Ideals, and Gröbner Bases

Polynomials, Ideals, and Gröbner Bases Polynomials, Ideals, and Gröbner Bases Notes by Bernd Sturmfels for the lecture on April 10, 2018, in the IMPRS Ringvorlesung Introduction to Nonlinear Algebra We fix a field K. Some examples of fields

More information

Nine Week SOL Time Allotment. A.4a, b and A.5a - Properties. A.1b and A.3c - Order of Operations. A.1b - Evaluating Expression

Nine Week SOL Time Allotment. A.4a, b and A.5a - Properties. A.1b and A.3c - Order of Operations. A.1b - Evaluating Expression 6/5/2018 Nine Week SOL Time Allotment A.4a, b and A.5a - Properties A.1b and A.3c - Order of Operations A.1b - Evaluating Expression 3 Days 1 Day 4 Days 1 8.17 and 8.18 - Simplifying Expressions 4 Days

More information

A. Incorrect! Apply the rational root test to determine if any rational roots exist.

A. Incorrect! Apply the rational root test to determine if any rational roots exist. College Algebra - Problem Drill 13: Zeros of Polynomial Functions No. 1 of 10 1. Determine which statement is true given f() = 3 + 4. A. f() is irreducible. B. f() has no real roots. C. There is a root

More information

Chapter R - Review of Basic Algebraic Concepts (26 topics, no due date)

Chapter R - Review of Basic Algebraic Concepts (26 topics, no due date) Course Name: Math 00023 Course Code: N/A ALEKS Course: Intermediate Algebra Instructor: Master Templates Course Dates: Begin: 08/15/2014 End: 08/15/2015 Course Content: 245 topics Textbook: Miller/O'Neill/Hyde:

More information

Algebra 2 Mississippi College- and Career- Readiness Standards for Mathematics RCSD Unit 1 Data Relationships 1st Nine Weeks

Algebra 2 Mississippi College- and Career- Readiness Standards for Mathematics RCSD Unit 1 Data Relationships 1st Nine Weeks 1 st Nine Weeks Algebra 2 Mississippi College- and Career- Readiness Standards for Mathematics Unit 1 Data Relationships Level 4: I can interpret key features of graphs and tables in terms of the quantities.

More information

Math Curriculum Map: Integrated Algebra II Unit: 1 Quarter: Time Frame: Review of Algebra 13 days Essential Questions: Key Concepts: Key Vocabulary:

Math Curriculum Map: Integrated Algebra II Unit: 1 Quarter: Time Frame: Review of Algebra 13 days Essential Questions: Key Concepts: Key Vocabulary: Math Curriculum Map: Integrated Algebra II Unit: 1 Quarter: Time Frame: Review of Algebra 1 13 days Essential Questions: How does the order of operations help solve one- and two- step equations? How is

More information

Projective Varieties. Chapter Projective Space and Algebraic Sets

Projective Varieties. Chapter Projective Space and Algebraic Sets Chapter 1 Projective Varieties 1.1 Projective Space and Algebraic Sets 1.1.1 Definition. Consider A n+1 = A n+1 (k). The set of all lines in A n+1 passing through the origin 0 = (0,..., 0) is called the

More information

CME Project, Algebra Correlated to: Michigan High School Content Expectations, Algebra 1

CME Project, Algebra Correlated to: Michigan High School Content Expectations, Algebra 1 STRAND 1: QUANTITATIVE LITERACY AND LOGIC STANDARD L1: REASONING ABOUT NUMBERS, SYSTEMS, AND QUANTITATIVE SITUATIONS Based on their knowledge of the properties of arithmetic, students understand and reason

More information

Intermediate Algebra with Applications

Intermediate Algebra with Applications Lakeshore Technical College 10-804-118 Intermediate Algebra with Applications Course Outcome Summary Course Information Alternate Title Description Total Credits 4 Total Hours 72 Pre/Corequisites Prerequisite

More information