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

Size: px
Start display at page:

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

Transcription

1 Algebraic Geodesy and Geoinformatics 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 Gauss-Jacobi combinatorial solution can be employed originally for linear regression problem. This means, if we have more independent equations, m than variables, n, so m > n, then the solution - in least-squares sense - can be achieved by solving the m n combinatorial subsets of m equations, and then weighting these solutions properly. This method can be extended to nonlinear case using linearization. A key point of this extention, is that we can solve nonlinear subsets without a priori information about the solutions, which would be necessary for the traditional linearization. The determination of weights through linearization takes place after the solutions of these nonlinear subsets. Therefore Gauss- Jacobi method can be considered as a gobal method First, let us illustrate this method for linear system. We consider a system with m = 2 unknowns, (x, y) and with n = 3 equations, (eq1, eq2, eq3). Clear@"Global *"D eq1 = a1 x + b1 y - y1 0; eq2 = a2 x + b2 y - y2 0; eq3 = a3 x + b3 y - y3 0; We shall show that in case of linear system, the result of the least square solution and that of the weighted combinatorial solution are the same. The least square solution can be computed in the following way: - the matrix form of the system, 8b, A< = eq2, eq3<, 8x, y<d; MatrixForm@AD a1 b1 a2 b2 a3 b3 b = - b; MatrixForm@bD y1 y2 y3 - then the least square solution is

2 2 GaussJacobi_07.nb xy Simplify PseudoInverse A.b, Element a1, a2, a3, b1, b2, b3, y1, y2, y3, Reals ; MatrixForm xy a3 b1 b3 y1 b2 b3 y2 b1 2 y3 b2 2 y3 a1 b2 2 y1 b3 2 y1 b1 b2 y2 b1 b3 y3 a2 b1 b2 y1 b1 2 y2 b3 b3 y2 b2 y3 a3 2 b1 2 b2 2 2 a1 a3 b1 b3 2 a2 b2 a1 b1 a3 b3 a2 2 b1 2 b3 2 a1 2 b2 2 b3 2 a3 2 b1 y1 b2 y2 a1 a3 b3 y1 b1 y3 a2 a1 b2 y1 a1 b1 y2 a3 b3 y2 a3 b2 y3 a2 2 b1 y1 b3 y3 a1 2 b2 y2 b3 y3 a3 2 b1 2 b2 2 2 a1 a3 b1 b3 2 a2 b2 a1 b1 a3 b3 a2 2 b1 2 b3 2 a1 2 b2 2 b3 2 Now let us consider the solutions of the combinatorial pairs A12 CoefficientArrays eq1, eq2, x, y 2 ; xy12 LinearSolve A12, y1, y2 ; MatrixForm xy12 b2 y1 b1 y2 a2 b1 a1 b2 a2 y1 a1 y2 a2 b1 a1 b2 A13 CoefficientArrays eq1, eq3, x, y 2 ; xy13 LinearSolve A13, y1, y3 ; MatrixForm xy13 b3 y1 b1 y3 a3 b1 a1 b3 a3 y1 a1 y3 a3 b1 a1 b3 A23 CoefficientArrays eq2, eq3, x, y 2 ; xy23 LinearSolve A23, y2, y3 ; MatrixForm xy23 b3 y2 b2 y3 a3 b2 a2 b3 a3 y2 a2 y3 a3 b2 a2 b3 the weights are the square of the corresponding determinants, Π12 a1 b2 a2 b1 2 ; Π13 a1 b3 a3 b1 2 ; Π23 a2 b3 a3 b2 2 ; leading to the weighted combinatorical solution for variable x as xc Π12 xy12 1 Π13 xy13 1 Π23 xy23 1 Π12 Π13 Π23 Simplify a2 b1 a1 b2 b2 y1 b1 y2 a3 b1 a1 b3 b3 y1 b1 y3 a3 b2 a2 b3 b3 y2 b2 y3 a2 b1 a1 b2 2 a3 b1 a1 b3 2 a3 b2 a2 b3 2 Similarly, the solution for y is given by yc Π12 xy12 2 Π13 xy13 2 Π23 xy23 2 Π12 Π13 Π23 Simplify a3 2 b1 y1 b2 y2 a1 a3 b3 y1 b1 y3 a2 a1 b2 y1 a1 b1 y2 a3 b3 y2 a3 b2 y3 a2 2 b1 y1 b3 y3 a1 2 b2 y2 b3 y3 a3 2 b1 2 b2 2 2 a1 a3 b1 b3 2 a2 b2 a1 b1 a3 b3 a2 2 b1 2 b3 2 a1 2 b2 2 b3 2 This Gauss-Jacobi combinatorial solution and the least square solution are the same, indeed FullSimplify xc, yc xy 0, 0

3 GaussJacobi_07.nb 7-2 Nonlinear model Arithmetical Average of the Combinatorial Solution In order to employ this result for a nonlinear model, this model should be linearized, but where? To solve this problem the following algorithm may be used, improving the solution step by step, - Compute the combinatorial solutions of the nonlinear model via resultants or Groebner basis, alternatively with global numerical methods, like homotopy, - Compute the arithmetical average of these solutions, - Consider this arithmetical average as the point, where the Jacobian should be evaluated and employ weighting technique, - Linearize the nonlinear system at this weighted result, and solve it as a linear least square problem. Let us illustrate this technique with the combinatorial solution of the 2D positioning problem. As we have seen in Section , this problem can be solved easily via ALESS using Groebner basis. Considering 4 points with known coordinates, P i (x i,y i ) and their distances (t i ) from a point P 0 with unknown coordinates (x 0,y 0 ), which should be computed. The values are presented in the following table, Table 7.1 Data for 2D Positioning problem The coordinates and the distances, x ; x ; x ; x ; y ; y ; y ; y ; t ; t ; t ; t ; The lists of variables, X x1, x2, x3, x4 ; Y y1, y2, y3, y4 ; T t1, t2, t3, t4 ; The observational equations are f1 x1 x0 ^2 y1 y0 ^2 t1 2 ; f2 x2 x0 ^2 y2 y0 ^2 t2 2 ; f3 x3 x0 ^2 y3 y0 ^2 t3 2 ; f4 x4 x0 ^2 y4 y0 ^2 t4 2 ; So we have 4 equations and 2 unknowns, m 4; n 2; The number of the combinations,

4 4 GaussJacobi_07.nb mn Binomial m, n 6 The combinatorial pairs, R Subsets Range m, n 1, 2, 1, 3, 1, 4, 2, 3, 2, 4, 3, 4 The corresponding data set is in form of {x i,y i, t i, x j,y j, t j } datac Map X 1, Y 1, T 1, X 2, Y 2, T 2 &, R , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , The solutions of a general pair can be computed via reduced Groebner basis. The system, F xi x0 ^2 yi y0 ^2 ti 2, xj x0 ^2 yj y0 ^2 tj 2 ; The second order polynomial for the x0 coordinate, px0 GroebnerBasis F, x0, y0, y0 ti 4 2 ti 2 tj 2 tj 4 4 ti 2 x0 xi 4 tj 2 x0 xi 2 ti 2 xi 2 2 tj 2 xi 2 4 x0 2 xi 2 4 x0 xi 3 xi 4 4 ti 2 x0 xj 4 tj 2 x0 xj 8 x0 2 xi xj 4 x0 xi 2 xj 2 ti 2 xj 2 2 tj 2 xj 2 4 x0 2 xj 2 4 x0 xi xj 2 2 xi 2 xj 2 4 x0 xj 3 xj 4 2 ti 2 yi 2 2 tj 2 yi 2 4 x0 2 yi 2 4 x0 xi yi 2 2 xi 2 yi 2 4 x0 xj yi 2 2 xj 2 yi 2 yi 4 4 ti 2 yi yj 4 tj 2 yi yj 8 x0 2 yi yj 8 x0 xi yi yj 4 xi 2 yi yj 8 x0 xj yi yj 4 xj 2 yi yj 4 yi 3 yj 2 ti 2 yj 2 2 tj 2 yj 2 4 x0 2 yj 2 4 x0 xi yj 2 2 xi 2 yj 2 4 x0 xj yj 2 2 xj 2 yj 2 6 yi 2 yj 2 4 yi yj 3 yj 4 its solution in general, sol. Solve a2 2 a1 a0 0, a1 a12 4 a0 a2 2 a2, a1 a12 4 a0 a2 2 a2 It means we have two solutions. The coefficients A0 Coefficient px0, x0, 0 ti 4 2 ti 2 tj 2 tj 4 2 ti 2 xi 2 2 tj 2 xi 2 xi 4 2 ti 2 xj 2 2 tj 2 xj 2 2 xi 2 xj 2 xj 4 2 ti 2 yi 2 2 tj 2 yi 2 2 xi 2 yi 2 2 xj 2 yi 2 yi 4 4 ti 2 yi yj 4 tj 2 yi yj 4 xi 2 yi yj 4 xj 2 yi yj 4 yi 3 yj 2 ti 2 yj 2 2 tj 2 yj 2 2 xi 2 yj 2 2 xj 2 yj 2 6 yi 2 yj 2 4 yi yj 3 yj 4 A1 Coefficient px0, x0, 1 4 ti 2 xi 4 tj 2 xi 4 xi 3 4 ti 2 xj 4 tj 2 xj 4 xi 2 xj 4 xi xj 2 4 xj 3 4 xi yi 2 4 xj yi 2 8 xi yi yj 8 xj yi yj 4 xi yj 2 4 xj yj 2 A2 Coefficient px0, x0, 2 4 xi 2 8 xi xj 4 xj 2 4 yi 2 8 yi yj 4 yj 2

5 GaussJacobi_07.nb The function which computes the x0 coordinates for a pair {i, j} X0 xi_, yi_, ti_, xj_, yj_, tj_ sol. a0 A0, a1 A1, a2 A2 Flatten; For example in case of pair {1, 2} X0 datac , The values of all of the x0 coordinates are, x0c Map X0 &, datac , , , , , , , , , , , The same computations can be done for y0, namely py0 GroebnerBasis F, x0, y0, x0 ti 4 2 ti 2 tj 2 tj 4 2 ti 2 xi 2 2 tj 2 xi 2 xi 4 4 ti 2 xi xj 4 tj 2 xi xj 4 xi 3 xj 2 ti 2 xj 2 2 tj 2 xj 2 6 xi 2 xj 2 4 xi xj 3 xj 4 4 xi 2 y0 2 8 xi xj y0 2 4 xj 2 y0 2 4 ti 2 y0 yi 4 tj 2 y0 yi 4 xi 2 y0 yi 8 xi xj y0 yi 4 xj 2 y0 yi 2 ti 2 yi 2 2 tj 2 yi 2 2 xi 2 yi 2 4 xi xj yi 2 2 xj 2 yi 2 4 y0 2 yi 2 4 y0 yi 3 yi 4 4 ti 2 y0 yj 4 tj 2 y0 yj 4 xi 2 y0 yj 8 xi xj y0 yj 4 xj 2 y0 yj 8 y0 2 yi yj 4 y0 yi 2 yj 2 ti 2 yj 2 2 tj 2 yj 2 2 xi 2 yj 2 4 xi xj yj 2 2 xj 2 yj 2 4 y0 2 yj 2 4 y0 yi yj 2 2 yi 2 yj 2 4 y0 yj 3 yj 4 B0 Coefficient py0, y0, 0 ti 4 2 ti 2 tj 2 tj 4 2 ti 2 xi 2 2 tj 2 xi 2 xi 4 4 ti 2 xi xj 4 tj 2 xi xj 4 xi 3 xj 2 ti 2 xj 2 2 tj 2 xj 2 6 xi 2 xj 2 4 xi xj 3 xj 4 2 ti 2 yi 2 2 tj 2 yi 2 2 xi 2 yi 2 4 xi xj yi 2 2 xj 2 yi 2 yi 4 2 ti 2 yj 2 2 tj 2 yj 2 2 xi 2 yj 2 4 xi xj yj 2 2 xj 2 yj 2 2 yi 2 yj 2 yj 4 B1 Coefficient py0, y0, 1 4 ti 2 yi 4 tj 2 yi 4 xi 2 yi 8 xi xj yi 4 xj 2 yi 4 yi 3 4 ti 2 yj 4 tj 2 yj 4 xi 2 yj 8 xi xj yj 4 xj 2 yj 4 yi 2 yj 4 yi yj 2 4 yj 3 B2 Coefficient py0, y0, 2 4 xi 2 8 xi xj 4 xj 2 4 yi 2 8 yi yj 4 yj 2 Y0 xi_, yi_, ti_, xj_, yj_, tj_ sol. a0 B0, a1 B1, a2 B2 Flatten; y0c Map Y0 &, datac , , , , , , , , , , , In order to decide, which combination is the admissible solution, we should define the least square objective, obj Apply Plus, Map ^2 &, f1, f2, f3, f x y x y x y x y0 2 2 For example let us consider the first pair. The x0 values

6 6 GaussJacobi_07.nb x0c , The y0 values, y0c , The possible combinations, xyc Tuples x0c 1, y0c , , , , , , , Let us compute the values of the objective function, objc Map obj. x0 1, y0 2 &, xyc , , , This means that the third combination is the best, since it results smallest residual. In general way, xyc First Flatten Position objc, Min objc , Let us generalize this selection technique for all points. The combinations, xyc MapThread Tuples 1, 2 &, x0c, y0c , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , The objective functions, objc Map Map obj. x0 1, y0 2 &, &, xyc , , , , , , , , , , , , , , , , , , , , , , , since the positions of the minimums are Map First Flatten Position, Min &, objc 3, 1, 3, 1, 2, 2 The proper solutions of the combinatorial subsets, x0y0 MapThread xyc 1 2 &, Range mn, Map First Flatten Position, Min &, objc , , , , , , , , , , ,

7 GaussJacobi_07.nb Let us compute the arithmetical average, x0a, y0a Map Mean &, Transpose x0y , NumberForm, , Weighted Combinatorial Solution As we have seen in the previous chapter, the solution with high precision is, {x , y } therefore one may improve this combinatorial solution by employing weighting. The weighting for nonlinear system can be carried out like in case of the linear system. Let us consider the j-th equation of a linear model, For example in our case n = 2, then the j-th observation equation is, The linearized form of the j-th nonlinear model equation at (Η 1,...,Η n ), In our case j = 1,..., m, where m = 4. For example, in case of n = 2, the j-th equation, or As we have seen in case of the linear model (n = 2 and m = 4) the weight of the combinatorial solution {1, 2} was In similar way the weight of the nonlinear model for the solution (x 12 ), where Η x 12. In our case, the partial derivatives,

8 8 GaussJacobi_07.nb f1x D f1, x x0 f1y D f1, y y0 f2x D f2, x x0 f2y D f2, y y0 f3x D f3, x x0 f3y D f3, y y0 f4x D f4, x x0 f4y D f4, y y0 The selected combinatorial solutions of the subsets in rule form, x0y0s Map x0 1, y0 2 &, x0y0 x , y , x , y , x , y , x , y , x , y , x , y Then the weights, Π12 f1x f2y f2x f1y. x0y0s Π13 f1x f3y f3x f1y. x0y0s Π14 f1x f4y f4x f1y. x0y0s Π23 f2x f3y f3x f2y. x0y0s Π24 f2x f4y f4x f2y. x0y0s Π34 f3x f4y f4x f3y. x0y0s Employing these weights, the weighted solutions, {x0c, y0c} are, Πw Π12, Π13, Π14, Π23, Π24, Π34 ;

9 GaussJacobi_07.nb xd Transpose x0y , , , , , yd Transpose x0y , , , , , Πw.xd x0c Apply Plus, Πw NumberForm, Πw.yd y0c Apply Plus, Πw NumberForm, Additional Linearization This result can be further refined, if we linearize our nonlinear system at this point {x0c, y0c}, and solve it as a linear least square problem. The linearized equations q1 Series f1, x0, x0c, 1, y0, y0c, 1 Normal Expand x y0 q2 Series f2, x0, x0c, 1, y0, y0c, 1 Normal Expand x y0 q3 Series f3, x0, x0c, 1, y0, y0c, 1 Normal Expand x y0 q4 Series f4, x0, x0c, 1, y0, y0c, 1 Normal Expand x y0 In matrix form, where and Clear b b, A CoefficientArrays q1, q2, q3, q4, x0, y0 ; b b; MatrixForm A

10 10 GaussJacobi_07.nb MatrixForm b The pseudo inverse solution, PseudoInverse A.b , NumberForm, , Here we summarized the results of the different approaches, Table 7.2 Results of Gauss-Jacobi solution and its improvement The improvement can be clearly seen. 7-3 Examples GPS 4 - Point Problem This problem has been solved in Section with linear homotopy. Now, we solve the problem in a different way, using computer algebra, namely Dixon resultant. The reason is, that this result will be utilized in case of N- point problem, in the next example, using Gauss-Jacobi method. Employing our equations, e i = 0, i = 1...4, where Clear x1, x2, x3, x4, b e1 x1 a 0 2 x2 b 0 2 x3 c 0 2 x4 d 0 2 ; e2 x1 a 1 2 x2 b 1 2 x3 c 1 2 x4 d 1 2 ; e3 x1 a 2 2 x2 b 2 2 x3 c 2 2 x4 d 2 2 ; e4 x1 a 3 2 x2 b 3 2 x3 c 3 2 x4 d 3 2 ; First, this system of polynomial equations, will be transformed into a system of linear equations and a quadratic equation. Let us expand and multiply by minus one, and arranged the original equations, eqsl e1l, e2l, e3l, e4l Map Sort Expand &, e1, e2, e3, e4 x1 2 x2 2 x3 2 x4 2 2 x1 a 0 a x2 b 0 b x3 c 0 c x4 d 0 d 0 2, x1 2 x2 2 x3 2 x4 2 2 x1 a 1 a x2 b 1 b x3 c 1 c x4 d 1 d 1 2, x1 2 x2 2 x3 2 x4 2 2 x1 a 2 a x2 b 2 b x3 c 2 c x4 d 2 d 2 2, x1 2 x2 2 x3 2 x4 2 2 x1 a 3 a x2 b 3 b x3 c 3 c x4 d 3 d 3 2

11 GaussJacobi_07.nb Subtract the fourth equation from the other three ones, we get q Table eqsl i eqsl 4, i, 1, 3 Simplify 2 x1 a 0 a x1 a 3 a x2 b 0 b x2 b 3 b x3 c 0 c x3 c 3 c x4 d 0 d x4 d 3 d 3 2, 2 x1 a 1 a x1 a 3 a x2 b 1 b x2 b 3 b x3 c 1 c x3 c 3 c x4 d 1 d x4 d 3 d 3 2, 2 x1 a 2 a x1 a 3 a x2 b 2 b x2 b 3 b x3 c 2 c x3 c 3 c x4 d 2 d x4 d 3 d 3 2 This is a system of three linear equations, and they can be written as, g 1 a 0,3 x1 b 0,3 x2 c 0,3 x3 d 3,0 x4 e 0,3 ; g 2 g , 0 1 x1 a 1,3 x2 b 1,3 x3 c 1,3 x4 d 3,1 e 1,3 g 3 g , 0 2 x1 a 2,3 x2 b 2,3 x3 c 2,3 x4 d 3,2 e 2,3 The coefficients a i,3, b i,3, c i,3, d 3,i, e i,3, i , can be determined as, coeffs0 Table Coefficient q i 1, x1, Coefficient q i 1, x2, Coefficient q i 1, x3, Coefficient q i 1, x4 Factor, i, 0, 2 ; which are the coefficients of the variables x 1, x 2, x 3, x 4. The constant part is, coeffs1 Table q i coeffs0 i. x1, x2, x3, x4 Simplify, i, 1, 3 ; Therefore, all of the coefficients are, coeffs Table Union coeffs0 i, coeffs1 i, i, 1, 3 2 a 0 a 3, 2 b 0 b 3, 2 c 0 c 3, 2 d 0 d 3, a 0 2 a 3 2 b 0 2 b 3 2 c 0 2 c 3 2 d 0 2 d 3 2, 2 a 1 a 3, 2 b 1 b 3, 2 c 1 c 3, 2 d 1 d 3, a 1 2 a 3 2 b 1 2 b 3 2 c 1 2 c 3 2 d 1 2 d 3 2, 2 a 2 a 3, 2 b 2 b 3, 2 c 2 c 3, 2 d 2 d 3, a 2 2 a 3 2 b 2 2 b 3 2 c 2 2 c 3 2 d 2 2 d 3 2 Let us assign these coefficients to the linear system, coeffsn Flatten Table Inner 1 2 &, a i,3, b i,3, c i,3, d 3,i, e i,3, coeffs i 1, List, i, 0, 2 a 0,3 2 a 0 a 3, b 0,3 2 b 0 b 3, c 0,3 2 c 0 c 3, d 3,0 2 d 0 d 3, e 0,3 a 0 2 a 3 2 b 0 2 b 3 2 c 0 2 c 3 2 d 0 2 d 3 2, a 1,3 2 a 1 a 3, b 1,3 2 b 1 b 3, c 1,3 2 c 1 c 3, d 3,1 2 d 1 d 3, e 1,3 a 1 2 a 3 2 b 1 2 b 3 2 c 1 2 c 3 2 d 1 2 d 3 2, a 2,3 2 a 2 a 3, b 2,3 2 b 2 b 3, c 2,3 2 c 2 c 3, d 3,2 2 d 2 d 3, e 2,3 a 2 2 a 3 2 b 2 2 b 3 2 c 2 2 c 3 2 d 2 2 d 3 2 In addition, we take one of the nonlinear equations, let say the fourth one, e 4 x1 a 3 2 x2 b 3 2 x3 c 3 2 x4 d 3 2 ; Now, we shall solve the linear system for the variables x 1, x 2, x 3, with x 4 as parameter. It means, the relations x 1 = g(x 4 ), x 2 = g(x 4 ) and x 3 = g(x 4 ) will be computed. To do that, different methods can be employed. Here we shall employ Dixon resultant, Resultant Dixon Now we can solve the original system, eliminating the variables x 2 and x 3 to get x 1 = g(x 4 ),

12 12 GaussJacobi_07.nb drx1 DixonResultant g 1, g 2, g 3, x2, x3, u2, u3 x1 a 2,3 b 1,3 c 0,3 x1 a 1,3 b 2,3 c 0,3 x1 a 2,3 b 0,3 c 1,3 x1 a 0,3 b 2,3 c 1,3 x1 a 1,3 b 0,3 c 2,3 x1 a 0,3 b 1,3 c 2,3 x4 b 2,3 c 1,3 d 3,0 x4 b 1,3 c 2,3 d 3,0 x4 b 2,3 c 0,3 d 3,1 x4 b 0,3 c 2,3 d 3,1 x4 b 1,3 c 0,3 d 3,2 x4 b 0,3 c 1,3 d 3,2 b 2,3 c 1,3 e 0,3 b 1,3 c 2,3 e 0,3 b 2,3 c 0,3 e 1,3 b 0,3 c 2,3 e 1,3 b 1,3 c 0,3 e 2,3 b 0,3 c 1,3 e 2,3 This is a linear expression containing only x 1 and x 4, Exponent drx1, x1, x2, x3, x4 1, 0, 0, 1 Then the solution for x 1 = g(x 4 ) solx1 Solve drx1 0, x1 x1 x4 b 2,3 c 1,3 d 3,0 x4 b 1,3 c 2,3 d 3,0 x4 b 2,3 c 0,3 d 3,1 x4 b 0,3 c 2,3 d 3,1 x4 b 1,3 c 0,3 d 3,2 x4 b 0,3 c 1,3 d 3,2 b 2,3 c 1,3 e 0,3 b 1,3 c 2,3 e 0,3 b 2,3 c 0,3 e 1,3 b 0,3 c 2,3 e 1,3 b 1,3 c 0,3 e 2,3 b 0,3 c 1,3 e 2,3 a 2,3 b 1,3 c 0,3 a 1,3 b 2,3 c 0,3 a 2,3 b 0,3 c 1,3 a 0,3 b 2,3 c 1,3 a 1,3 b 0,3 c 2,3 a 0,3 b 1,3 c 2,3 Similarly, for the two additional variables, x 2 = g(x 4 ) and x 3 = g(x 4 ), and drx2 DixonResultant g 1, g 2, g 3, x1, x3, u1, u3 x2 a 2,3 b 1,3 c 0,3 x2 a 1,3 b 2,3 c 0,3 x2 a 2,3 b 0,3 c 1,3 x2 a 0,3 b 2,3 c 1,3 x2 a 1,3 b 0,3 c 2,3 x2 a 0,3 b 1,3 c 2,3 x4 a 2,3 c 1,3 d 3,0 x4 a 1,3 c 2,3 d 3,0 x4 a 2,3 c 0,3 d 3,1 x4 a 0,3 c 2,3 d 3,1 x4 a 1,3 c 0,3 d 3,2 x4 a 0,3 c 1,3 d 3,2 a 2,3 c 1,3 e 0,3 a 1,3 c 2,3 e 0,3 a 2,3 c 0,3 e 1,3 a 0,3 c 2,3 e 1,3 a 1,3 c 0,3 e 2,3 a 0,3 c 1,3 e 2,3 Exponent drx2, x1, x2, x3, x4 0, 1, 0, 1 solx2 Solve drx2 0, x2 x2 x4 a 2,3 c 1,3 d 3,0 x4 a 1,3 c 2,3 d 3,0 x4 a 2,3 c 0,3 d 3,1 x4 a 0,3 c 2,3 d 3,1 x4 a 1,3 c 0,3 d 3,2 x4 a 0,3 c 1,3 d 3,2 a 2,3 c 1,3 e 0,3 a 1,3 c 2,3 e 0,3 a 2,3 c 0,3 e 1,3 a 0,3 c 2,3 e 1,3 a 1,3 c 0,3 e 2,3 a 0,3 c 1,3 e 2,3 a 2,3 b 1,3 c 0,3 a 1,3 b 2,3 c 0,3 a 2,3 b 0,3 c 1,3 a 0,3 b 2,3 c 1,3 a 1,3 b 0,3 c 2,3 a 0,3 b 1,3 c 2,3 drx3 DixonResultant g 1, g 2, g 3, x1, x2, u1, u2 x3 a 2,3 b 1,3 c 0,3 x3 a 1,3 b 2,3 c 0,3 x3 a 2,3 b 0,3 c 1,3 x3 a 0,3 b 2,3 c 1,3 x3 a 1,3 b 0,3 c 2,3 x3 a 0,3 b 1,3 c 2,3 x4 a 2,3 b 1,3 d 3,0 x4 a 1,3 b 2,3 d 3,0 x4 a 2,3 b 0,3 d 3,1 x4 a 0,3 b 2,3 d 3,1 x4 a 1,3 b 0,3 d 3,2 x4 a 0,3 b 1,3 d 3,2 a 2,3 b 1,3 e 0,3 a 1,3 b 2,3 e 0,3 a 2,3 b 0,3 e 1,3 a 0,3 b 2,3 e 1,3 a 1,3 b 0,3 e 2,3 a 0,3 b 1,3 e 2,3 Exponent drx3, x1, x2, x3, x4 0, 0, 1, 1 solx3 Solve drx3 0, x3 x3 x4 a 2,3 b 1,3 d 3,0 x4 a 1,3 b 2,3 d 3,0 x4 a 2,3 b 0,3 d 3,1 x4 a 0,3 b 2,3 d 3,1 x4 a 1,3 b 0,3 d 3,2 x4 a 0,3 b 1,3 d 3,2 a 2,3 b 1,3 e 0,3 a 1,3 b 2,3 e 0,3 a 2,3 b 0,3 e 1,3 a 0,3 b 2,3 e 1,3 a 1,3 b 0,3 e 2,3 a 0,3 b 1,3 e 2,3 a 2,3 b 1,3 c 0,3 a 1,3 b 2,3 c 0,3 a 2,3 b 0,3 c 1,3 a 0,3 b 2,3 c 1,3 a 1,3 b 0,3 c 2,3 a 0,3 b 1,3 c 2,3 After substitution of these results into the nonlinear equation e 4, we get a quadratic equation for x 4, G e 4. solx1 1, 1, solx2 1, 1, solx3 1, 1 ;

13 GaussJacobi_07.nb Exponent G, x4, List 0, 1, 2 The coefficents of the quadratic equation are, h2d Coefficient G, x4 2 ; h1d Coefficient G, x4 ; h0d Simplify G h2d x4 2 h1d x4 ; Indeed, this is a quadratic equation, D h0d, x GPS N - Point Problem Let us now apply Gauss- Jacobi combinatorial solution. First, the subsets should be determined. In our case we have six satellites, which means six equations, and four unknowns. For illustration, we have the following numerical values, datan a , a , a , a , a , a , b , b , b , b , b , b , c , c , c , c , c , c , d , d , d , d , d , d ; m 6; n 4; The number of the subsets mn Binomial m, n 15 These subsets are, qs Partition Map 1 &, Flatten Subsets Range m, n, n 0, 1, 2, 3, 0, 1, 2, 4, 0, 1, 2, 5, 0, 1, 3, 4, 0, 1, 3, 5, 0, 1, 4, 5, 0, 2, 3, 4, 0, 2, 3, 5, 0, 2, 4, 5, 0, 3, 4, 5, 1, 2, 3, 4, 1, 2, 3, 5, 1, 2, 4, 5, 1, 3, 4, 5, 2, 3, 4, 5 The values of the indices start from zero in correspondence with the indices of the coefficients of the equations. Now, we shall utilize the symbolic solution of the GPS 4-points problem, namely the expressions of the coefficients of the quadratic equation (h 2, h 1, h 0 ). Therefore, we construct a new data list, datap similar to datan,which assignes the proper values to the coefficients of the equations of the 15 subsets, datap Table Map Select datan, MemberQ qs i, 1, 2 &. 1 0, 2 1, 3 2, 4 3 &, qs i, i, 1, mn ; For example, the fourth subset is indexed as qs 4 0, 1, 3, 4

14 14 GaussJacobi_07.nb and it has the proper data assignments, datap 4 a , a , a , a , b , b , b , b , c , c , c , c , d , d , d , d Now, we can employ the symbolic expressions of the coefficients of the quadratic equation for x 4, (h 2, h 1, h 0 ), which were developed in the previous example. These coefficients can be evaluated for all of the 15 combinatorial subsets, (H 2, H 1, H 0 ), H2 Map h2d. coeffsn. Flatten &, datap ; H1 Map h1d. coeffsn. Flatten &, datap ; H0 Map h0d. coeffsn. Flatten &, datap ; It is useful to display these coeffients, H210 Transpose H2, H1, H0 ; H210c Map. datan &, H210 ; TableForm SetPrecision H210c, mn This table indicates that the 10-th combination has a poor geometry, which fact can be also detected by computing its PDOP (Position Dilution of Precision). Then the 15 quadratic equations can be solved for x 4, X4 Map x4. Solve 1 x4 ^ 2 2 x4 3 0, x4 1, 1 &, H210c ; These values of x 4 can be substituted into the symbolic relations x 1 = g(x 4 ), x 2 = g(x 4 ) and x 3 = g(x 4 ) developed for GPS 4 - points problem, X1 MapThread x1. solx1 1, 1. coeffsn. Flatten 1. x4 2 &, datap, X4 ; X2 MapThread x2. solx2 1, 1. coeffsn. Flatten 1. x4 2 &, datap, X4 ; X3 MapThread x3. solx3 1, 1. coeffsn. Flatten 1. x4 2 &, datap, X4 ; Let us display these solutions for (x 1, x 2, x 3, x 4 ),

15 GaussJacobi_07.nb X Transpose X1, X2, X3, X4 ; TableForm SetPrecision X, In order to compute the weights of these solutions, one has to compute the square of the 15 Jacobi determinants. Each has size of 4 4, because of four equations and four variables in each subset. Starting with the general form of the i-th equation, e x1 a i 2 x2 b i 2 x3 c i 2 x4 d i 2 ; The partial derivatives are, de D e, x1, D e, x2, D e, x3, D e, x4 2 x1 a i, 2 x2 b i, 2 x3 c i, 2 x4 d i The numerical values of these partial derivatives will be computed at the corresponding combinatorial solutions, see the table above (variable X). Therefore, the weights, Π j, the square of the 15 Jacobi determinants are, Πs Table Map Det de. i 1, de. i 2, de. i 3, de. i 4. datan 2 &, qs j. x1 X j, 1, x2 X j, 2, x3 X j, 3, x4 X j, 4, j, 1, 15 ; The sum of these weights are sπ, sπs Apply Plus, Πs Then the weighted solution of the variable x i is X1s, X2s, X3s, X4s Map Πs. &, X1, X2, X3, X4 sπs; SetPrecision X1s, X2s, X3s, X4s, , , , which is very close to the direct numerical solution. This direct numerical solution can be computed as follows:

16 16 GaussJacobi_07.nb - the objective to be minimized is the sum of the residiums of the equations f Apply Plus, Table e 2. datan, i, 0, 5 Simplify x x x x x x x x x x x x x x x x x x x x x x x x4 2 2 To find the global minimum, the built-in function NMinimize is more promising than FindMinimum designed to search local minimum, or soln NMinimize f, x1, x2, x3, x , x , x , x , x SetPrecision soln 2, 10 x , x , x , x However, if we employ the norm of the distance error, instead of the residium of the equations, namely en d i x1 a i 2 x2 b i 2 x3 c i 2 x4 2 ; and then the objective is,

17 GaussJacobi_07.nb fn Apply Plus, Table en. datan, i, 0, x x x3 2 x x x x3 2 2 x x x x3 2 x x x x3 2 2 x x x x3 2 x x x x3 2 x4 The optimum will be somewhat different, solnn NMinimize fn, x1, x2, x3, x , x , x , x , x or SetPrecision solnn 2, 10 x , x , x , x We shall deal with problem in Chapter 11, in Part II Parallel Computing Similar to linear homotopy, the computation time of Gauss-Jacobi combinatorial method can be also naturally reduced by parallel computing! The solution of the equations of the different subsets can be achieved independently and therefore simultaneously. Concerning GPS N -point problem, the computation via parallel technique required more time than in normal way. AbsoluteTiming X4 Map x4. Solve 1 x4 ^ 2 2 x4 3 0, x4 1, 1 &, H210c ; 0., Null

18 18 GaussJacobi_07.nb AbsoluteTiming X4 ParallelMap x4. Solve 1 x4 ^ 2 2 x4 3 0, x4 1, 1 &, H210c ; , Null The explanation for this controversial fact is, that the computation time originally is already very short and using parallel mode, the communication time between the cores dominate and it needs more time than the net computation itself. However, when the normal computation time is longer, the parallel method can reduce the running time considerably, see e.g. Section

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

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

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

13 Positioning by Photogrammetric Resection

13 Positioning by Photogrammetric Resection Algebraic Geodesy and Geoinformatics - 2009 - PART II APPLICATIONS 13 Positioning by Photogrammetric Resection Overview First the 3- point photogrammetric resection model is solved following the Grafarend-

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

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

5.3. Polynomials and Polynomial Functions

5.3. Polynomials and Polynomial Functions 5.3 Polynomials and Polynomial Functions Polynomial Vocabulary Term a number or a product of a number and variables raised to powers Coefficient numerical factor of a term Constant term which is only a

More information

Computational Methods. Least Squares Approximation/Optimization

Computational Methods. Least Squares Approximation/Optimization Computational Methods Least Squares Approximation/Optimization Manfred Huber 2011 1 Least Squares Least squares methods are aimed at finding approximate solutions when no precise solution exists Find the

More information

Y i = η + ɛ i, i = 1,...,n.

Y i = η + ɛ i, i = 1,...,n. Nonparametric tests If data do not come from a normal population (and if the sample is not large), we cannot use a t-test. One useful approach to creating test statistics is through the use of rank statistics.

More information

SCORE BOOSTER JAMB PREPARATION SERIES II

SCORE BOOSTER JAMB PREPARATION SERIES II BOOST YOUR JAMB SCORE WITH PAST Polynomials QUESTIONS Part II ALGEBRA by H. O. Aliu J. K. Adewole, PhD (Editor) 1) If 9x 2 + 6xy + 4y 2 is a factor of 27x 3 8y 3, find the other factor. (UTME 2014) 3x

More information

Revision Problems for Examination 1 in Algebra 1

Revision Problems for Examination 1 in Algebra 1 Centre for Mathematical Sciences Mathematics, Faculty of Science Revision Problems for Examination 1 in Algebra 1 Arithmetics 1 Determine a greatest common divisor to the integers a) 5431 and 1345, b)

More information

Learning Module 1 - Basic Algebra Review (Appendix A)

Learning Module 1 - Basic Algebra Review (Appendix A) Learning Module 1 - Basic Algebra Review (Appendix A) Element 1 Real Numbers and Operations on Polynomials (A.1, A.2) Use the properties of real numbers and work with subsets of the real numbers Determine

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 5. Higher Order Linear ODE'S

CHAPTER 5. Higher Order Linear ODE'S A SERIES OF CLASS NOTES FOR 2005-2006 TO INTRODUCE LINEAR AND NONLINEAR PROBLEMS TO ENGINEERS, SCIENTISTS, AND APPLIED MATHEMATICIANS DE CLASS NOTES 2 A COLLECTION OF HANDOUTS ON SCALAR LINEAR ORDINARY

More information

Algebra Review. Terrametra Resources. Lynn Patten

Algebra Review. Terrametra Resources. Lynn Patten Terrametra Resources Lynn Patten ALGEBRAIC EXPRESSION A combination of ordinary numbers, letter symbols, variables, grouping symbols and operation symbols. Numbers remain fixed in value and are referred

More information

Computational Study of 3D Affine Coordinate Transformation

Computational Study of 3D Affine Coordinate Transformation Computational Study of D Affine Coordinate Transformation Part I. -point Problem Bela Palancz 1, Robert H. Lewis 2, Piroska Zaletnyik and Joseph Awange 4 1 Department of Photogrammetryand Geoinformatics

More information

Curve Fitting and Interpolation

Curve Fitting and Interpolation Chapter 5 Curve Fitting and Interpolation 5.1 Basic Concepts Consider a set of (x, y) data pairs (points) collected during an experiment, Curve fitting: is a procedure to develop or evaluate mathematical

More information

Chapter 6: Rational Expr., Eq., and Functions Lecture notes Math 1010

Chapter 6: Rational Expr., Eq., and Functions Lecture notes Math 1010 Section 6.1: Rational Expressions and Functions Definition of a rational expression Let u and v be polynomials. The algebraic expression u v is a rational expression. The domain of this rational expression

More information

Numerical Analysis Solution of Algebraic Equation (non-linear equation) 1- Trial and Error. 2- Fixed point

Numerical Analysis Solution of Algebraic Equation (non-linear equation) 1- Trial and Error. 2- Fixed point Numerical Analysis Solution of Algebraic Equation (non-linear equation) 1- Trial and Error In this method we assume initial value of x, and substitute in the equation. Then modify x and continue till we

More information

Controlling the Population

Controlling the Population Lesson.1 Skills Practice Name Date Controlling the Population Adding and Subtracting Polynomials Vocabulary Match each definition with its corresponding term. 1. polynomial a. a polynomial with only 1

More information

Never leave a NEGATIVE EXPONENT or a ZERO EXPONENT in an answer in simplest form!!!!!

Never leave a NEGATIVE EXPONENT or a ZERO EXPONENT in an answer in simplest form!!!!! 1 ICM Unit 0 Algebra Rules Lesson 1 Rules of Exponents RULE EXAMPLE EXPLANANTION a m a n = a m+n A) x x 6 = B) x 4 y 8 x 3 yz = When multiplying with like bases, keep the base and add the exponents. a

More information

Topic 7: Polynomials. Introduction to Polynomials. Table of Contents. Vocab. Degree of a Polynomial. Vocab. A. 11x 7 + 3x 3

Topic 7: Polynomials. Introduction to Polynomials. Table of Contents. Vocab. Degree of a Polynomial. Vocab. A. 11x 7 + 3x 3 Topic 7: Polynomials Table of Contents 1. Introduction to Polynomials. Adding & Subtracting Polynomials 3. Multiplying Polynomials 4. Special Products of Binomials 5. Factoring Polynomials 6. Factoring

More information

CHAPTER 1 POLYNOMIALS

CHAPTER 1 POLYNOMIALS 1 CHAPTER 1 POLYNOMIALS 1.1 Removing Nested Symbols of Grouping Simplify. 1. 4x + 3( x ) + 4( x + 1). ( ) 3x + 4 5 x 3 + x 3. 3 5( y 4) + 6 y ( y + 3) 4. 3 n ( n + 5) 4 ( n + 8) 5. ( x + 5) x + 3( x 6)

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

1 Number Systems and Errors 1

1 Number Systems and Errors 1 Contents 1 Number Systems and Errors 1 1.1 Introduction................................ 1 1.2 Number Representation and Base of Numbers............. 1 1.2.1 Normalized Floating-point Representation...........

More information

Sections 7.1, 7.2: Sums, differences, products of polynomials CHAPTER 7: POLYNOMIALS

Sections 7.1, 7.2: Sums, differences, products of polynomials CHAPTER 7: POLYNOMIALS Sections 7.1, 7.2: Sums, differences, products of polynomials CHAPTER 7: POLYNOMIALS Quiz results Average 73%: high h score 100% Problems: Keeping track of negative signs x = + = + Function notation f(x)

More information

Something that can have different values at different times. A variable is usually represented by a letter in algebraic expressions.

Something that can have different values at different times. A variable is usually represented by a letter in algebraic expressions. Lesson Objectives: Students will be able to define, recognize and use the following terms in the context of polynomials: o Constant o Variable o Monomial o Binomial o Trinomial o Polynomial o Numerical

More information

MATH 8. Unit 1: Rational and Irrational Numbers (Term 1) Unit 2: Using Algebraic Properties to Simplify Expressions - Probability

MATH 8. Unit 1: Rational and Irrational Numbers (Term 1) Unit 2: Using Algebraic Properties to Simplify Expressions - Probability MATH 8 Unit 1: Rational and Irrational Numbers (Term 1) 1. I CAN write an algebraic expression for a given phrase. 2. I CAN define a variable and write an equation given a relationship. 3. I CAN use order

More information

GPS Geodesy - LAB 7. Neglecting the propagation, multipath, and receiver errors, eq.(1) becomes:

GPS Geodesy - LAB 7. Neglecting the propagation, multipath, and receiver errors, eq.(1) becomes: GPS Geodesy - LAB 7 GPS pseudorange position solution The pseudorange measurements j R i can be modeled as: j R i = j ρ i + c( j δ δ i + ΔI + ΔT + MP + ε (1 t = time of epoch j R i = pseudorange measurement

More information

Topics Covered in Math 115

Topics Covered in Math 115 Topics Covered in Math 115 Basic Concepts Integer Exponents Use bases and exponents. Evaluate exponential expressions. Apply the product, quotient, and power rules. Polynomial Expressions Perform addition

More information

Say it with Symbols - Unit Test Review Shet

Say it with Symbols - Unit Test Review Shet Name: Class: Date: ID: A Say it with Symbols - Unit Test Review Shet Short Answer 1. What does it mean to say that two algebraic expressions are equivalent? Evaluate the expression for the given value

More information

Graphing Square Roots - Class Work Graph the following equations by hand. State the domain and range of each using interval notation.

Graphing Square Roots - Class Work Graph the following equations by hand. State the domain and range of each using interval notation. Graphing Square Roots - Class Work Graph the following equations by hand. State the domain and range of each using interval notation. 1. y = x + 2 2. f(x) = x 1. y = x +. g(x) = 2 x 1. y = x + 2 + 6. h(x)

More information

Algebra 2 Summer Work Packet Review and Study Guide

Algebra 2 Summer Work Packet Review and Study Guide Algebra Summer Work Packet Review and Study Guide This study guide is designed to accompany the Algebra Summer Work Packet. Its purpose is to offer a review of the nine specific concepts covered in the

More information

Numerical solution of Least Squares Problems 1/32

Numerical solution of Least Squares Problems 1/32 Numerical solution of Least Squares Problems 1/32 Linear Least Squares Problems Suppose that we have a matrix A of the size m n and the vector b of the size m 1. The linear least square problem is to find

More information

MATHEMATICS. Higher 2 (Syllabus 9740)

MATHEMATICS. Higher 2 (Syllabus 9740) MATHEMATICS Higher (Syllabus 9740) CONTENTS Page AIMS ASSESSMENT OBJECTIVES (AO) USE OF GRAPHING CALCULATOR (GC) 3 LIST OF FORMULAE 3 INTEGRATION AND APPLICATION 3 SCHEME OF EXAMINATION PAPERS 3 CONTENT

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

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

POLYNOMIAL EXPRESSIONS PART 1

POLYNOMIAL EXPRESSIONS PART 1 POLYNOMIAL EXPRESSIONS PART 1 A polynomial is an expression that is a sum of one or more terms. Each term consists of one or more variables multiplied by a coefficient. Coefficients can be negative, so

More information

Math 0312 EXAM 2 Review Questions

Math 0312 EXAM 2 Review Questions Name Decide whether the ordered pair is a solution of the given system. 1. 4x + y = 2 2x + 4y = -20 ; (2, -6) Solve the system by graphing. 2. x - y = 6 x + y = 16 Solve the system by substitution. If

More information

evaluate functions, expressed in function notation, given one or more elements in their domains

evaluate functions, expressed in function notation, given one or more elements in their domains Describing Linear Functions A.3 Linear functions, equations, and inequalities. The student writes and represents linear functions in multiple ways, with and without technology. The student demonstrates

More information

Review: complex numbers

Review: complex numbers October 5/6, 01.5 extra problems page 1 Review: complex numbers Number system The complex number system consists of a + bi where a and b are real numbers, with various arithmetic operations. The real numbers

More information

MATH 7 HONORS. Unit 1: Rational and Irrational Numbers (Term 1) Unit 2: Using Algebraic Properties to Simplify Expressions - Probability

MATH 7 HONORS. Unit 1: Rational and Irrational Numbers (Term 1) Unit 2: Using Algebraic Properties to Simplify Expressions - Probability MATH 7 HONORS Unit 1: Rational and Irrational Numbers (Term 1) 1. I CAN write an algebraic expression for a given phrase. 2. I CAN define a variable and write an equation given a relationship. 3. I CAN

More information

1.5 F15 O Brien. 1.5: Linear Equations and Inequalities

1.5 F15 O Brien. 1.5: Linear Equations and Inequalities 1.5: Linear Equations and Inequalities I. Basic Terminology A. An equation is a statement that two expressions are equal. B. To solve an equation means to find all of the values of the variable that make

More information

Adding and Subtracting Polynomials Add and Subtract Polynomials by doing the following: Combine like terms

Adding and Subtracting Polynomials Add and Subtract Polynomials by doing the following: Combine like terms POLYNOMIALS AND POLYNOMIAL OPERATIONS STUDY GUIDE Polynomials Polynomials are classified by two different categories: by the number of terms, and the degree of the leading exponent. Number Classification

More information

Algebra. Practice Pack

Algebra. Practice Pack Algebra Practice Pack WALCH PUBLISHING Table of Contents Unit 1: Algebra Basics Practice 1 What Are Negative and Positive Numbers?... 1 Practice 2 Larger and Smaller Numbers................ 2 Practice

More information

CONTENTS COLLEGE ALGEBRA: DR.YOU

CONTENTS COLLEGE ALGEBRA: DR.YOU 1 CONTENTS CONTENTS Textbook UNIT 1 LECTURE 1-1 REVIEW A. p. LECTURE 1- RADICALS A.10 p.9 LECTURE 1- COMPLEX NUMBERS A.7 p.17 LECTURE 1-4 BASIC FACTORS A. p.4 LECTURE 1-5. SOLVING THE EQUATIONS A.6 p.

More information

A Add, subtract, multiply, and simplify polynomials and rational expressions.

A Add, subtract, multiply, and simplify polynomials and rational expressions. ED 337 Paul Garrett Selected Response Assessment 10 th Grade Mathematics Examination Algebra II Clear Purpose: The purpose of this selected response is to ensure an understanding of expressions, manipulation

More information

Basic Math Review for CS1340

Basic Math Review for CS1340 Basic Math Review for CS1340 Dr. Mihail January 15, 2015 (Dr. Mihail) Math Review for CS1340 January 15, 2015 1 / 34 Sets Definition of a set A set is a collection of distinct objects, considered as an

More information

A Review of Matrix Analysis

A Review of Matrix Analysis Matrix Notation Part Matrix Operations Matrices are simply rectangular arrays of quantities Each quantity in the array is called an element of the matrix and an element can be either a numerical value

More information

0615a2. Algebra 2/Trigonometry Regents Exam x 2 y? 4 x. y 2. x 3 y

0615a2. Algebra 2/Trigonometry Regents Exam x 2 y? 4 x. y 2. x 3 y Algebra /Trigonometry Regents Exam 065 www.jmap.org 065a Which list of ordered pairs does not represent a one-to-one function? ) (, ),(,0),(,),(4,) ) (,),(,),(,4),(4,6) ) (,),(,4),(,),(4,) 4) (,5),(,4),(,),(4,0)

More information

A Readable Introduction to Real Mathematics

A Readable Introduction to Real Mathematics Solutions to selected problems in the book A Readable Introduction to Real Mathematics D. Rosenthal, D. Rosenthal, P. Rosenthal Chapter 10: Sizes of Infinite Sets 1. Show that the set of all polynomials

More information

Honors Advanced Mathematics November 4, /2.6 summary and extra problems page 1 Recap: complex numbers

Honors Advanced Mathematics November 4, /2.6 summary and extra problems page 1 Recap: complex numbers November 4, 013.5/.6 summary and extra problems page 1 Recap: complex numbers Number system The complex number system consists of a + bi where a and b are real numbers, with various arithmetic operations.

More information

Chapter. Algebra techniques. Syllabus Content A Basic Mathematics 10% Basic algebraic techniques and the solution of equations.

Chapter. Algebra techniques. Syllabus Content A Basic Mathematics 10% Basic algebraic techniques and the solution of equations. Chapter 2 Algebra techniques Syllabus Content A Basic Mathematics 10% Basic algebraic techniques and the solution of equations. Page 1 2.1 What is algebra? In order to extend the usefulness of mathematical

More information

Basic Math Review for CS4830

Basic Math Review for CS4830 Basic Math Review for CS4830 Dr. Mihail August 18, 2016 (Dr. Mihail) Math Review for CS4830 August 18, 2016 1 / 35 Sets Definition of a set A set is a collection of distinct objects, considered as an object

More information

CHAPTER 11. A Revision. 1. The Computers and Numbers therein

CHAPTER 11. A Revision. 1. The Computers and Numbers therein CHAPTER A Revision. The Computers and Numbers therein Traditional computer science begins with a finite alphabet. By stringing elements of the alphabet one after another, one obtains strings. A set of

More information

{ independent variable some property or restriction about independent variable } where the vertical line is read such that.

{ independent variable some property or restriction about independent variable } where the vertical line is read such that. Page 1 of 5 Introduction to Review Materials One key to Algebra success is identifying the type of work necessary to answer a specific question. First you need to identify whether you are dealing with

More information

SYLLABUS FOR ENTRANCE EXAMINATION NANYANG TECHNOLOGICAL UNIVERSITY FOR INTERNATIONAL STUDENTS A-LEVEL MATHEMATICS

SYLLABUS FOR ENTRANCE EXAMINATION NANYANG TECHNOLOGICAL UNIVERSITY FOR INTERNATIONAL STUDENTS A-LEVEL MATHEMATICS SYLLABUS FOR ENTRANCE EXAMINATION NANYANG TECHNOLOGICAL UNIVERSITY FOR INTERNATIONAL STUDENTS A-LEVEL MATHEMATICS STRUCTURE OF EXAMINATION PAPER. There will be one -hour paper consisting of 4 questions..

More information

JUST THE MATHS UNIT NUMBER 6.1. COMPLEX NUMBERS 1 (Definitions and algebra) A.J.Hobson

JUST THE MATHS UNIT NUMBER 6.1. COMPLEX NUMBERS 1 (Definitions and algebra) A.J.Hobson JUST THE MATHS UNIT NUMBER 6.1 COMPLEX NUMBERS 1 (Definitions and algebra) by A.J.Hobson 6.1.1 The definition of a complex number 6.1.2 The algebra of complex numbers 6.1.3 Exercises 6.1.4 Answers to exercises

More information

Order of Operations Practice: 1) =

Order of Operations Practice: 1) = Order of Operations Practice: 1) 24-12 3 + 6 = a) 6 b) 42 c) -6 d) 192 2) 36 + 3 3 (1/9) - 8 (12) = a) 130 b) 171 c) 183 d) 4,764 1 3) Evaluate: 12 2-4 2 ( - ½ ) + 2 (-3) 2 = 4) Evaluate 3y 2 + 8x =, when

More information

1.3 Algebraic Expressions. Copyright Cengage Learning. All rights reserved.

1.3 Algebraic Expressions. Copyright Cengage Learning. All rights reserved. 1.3 Algebraic Expressions Copyright Cengage Learning. All rights reserved. Objectives Adding and Subtracting Polynomials Multiplying Algebraic Expressions Special Product Formulas Factoring Common Factors

More information

Course 2316 Sample Paper 1

Course 2316 Sample Paper 1 Course 2316 Sample Paper 1 Timothy Murphy April 19, 2015 Attempt 5 questions. All carry the same mark. 1. State and prove the Fundamental Theorem of Arithmetic (for N). Prove that there are an infinity

More information

COMBINATORIAL COUNTING

COMBINATORIAL COUNTING COMBINATORIAL COUNTING Our main reference is [1, Section 3] 1 Basic counting: functions and subsets Theorem 11 (Arbitrary mapping Let N be an n-element set (it may also be empty and let M be an m-element

More information

Unit 1 Vocabulary. A function that contains 1 or more or terms. The variables may be to any non-negative power.

Unit 1 Vocabulary. A function that contains 1 or more or terms. The variables may be to any non-negative power. MODULE 1 1 Polynomial A function that contains 1 or more or terms. The variables may be to any non-negative power. 1 Modeling Mathematical modeling is the process of using, and to represent real world

More information

Equations. Rational Equations. Example. 2 x. a b c 2a. Examine each denominator to find values that would cause the denominator to equal zero

Equations. Rational Equations. Example. 2 x. a b c 2a. Examine each denominator to find values that would cause the denominator to equal zero Solving Other Types of Equations Rational Equations Examine each denominator to find values that would cause the denominator to equal zero Multiply each term by the LCD or If two terms cross-multiply Solve,

More information

Multiplication of Polynomials

Multiplication of Polynomials Summary 391 Chapter 5 SUMMARY Section 5.1 A polynomial in x is defined by a finite sum of terms of the form ax n, where a is a real number and n is a whole number. a is the coefficient of the term. n is

More information

Introduction to Applied Linear Algebra with MATLAB

Introduction to Applied Linear Algebra with MATLAB Sigam Series in Applied Mathematics Volume 7 Rizwan Butt Introduction to Applied Linear Algebra with MATLAB Heldermann Verlag Contents Number Systems and Errors 1 1.1 Introduction 1 1.2 Number Representation

More information

Unit 13: Polynomials and Exponents

Unit 13: Polynomials and Exponents Section 13.1: Polynomials Section 13.2: Operations on Polynomials Section 13.3: Properties of Exponents Section 13.4: Multiplication of Polynomials Section 13.5: Applications from Geometry Section 13.6:

More information

Lecture 6. Numerical methods. Approximation of functions

Lecture 6. Numerical methods. Approximation of functions Lecture 6 Numerical methods Approximation of functions Lecture 6 OUTLINE 1. Approximation and interpolation 2. Least-square method basis functions design matrix residual weighted least squares normal equation

More information

Algebra II. A2.1.1 Recognize and graph various types of functions, including polynomial, rational, and algebraic functions.

Algebra II. A2.1.1 Recognize and graph various types of functions, including polynomial, rational, and algebraic functions. Standard 1: Relations and Functions Students graph relations and functions and find zeros. They use function notation and combine functions by composition. They interpret functions in given situations.

More information

The Area bounded by Two Functions

The Area bounded by Two Functions The Area bounded by Two Functions The graph below shows 2 functions f(x) and g(x) that are continuous between x = a and x = b and f(x) g(x). The area shaded in green is the area between the 2 curves. We

More information

REVIEW Chapter 1 The Real Number System

REVIEW Chapter 1 The Real Number System REVIEW Chapter The Real Number System In class work: Complete all statements. Solve all exercises. (Section.4) A set is a collection of objects (elements). The Set of Natural Numbers N N = {,,, 4, 5, }

More information

Section-A. Short Questions

Section-A. Short Questions Section-A Short Questions Question1: Define Problem? : A Problem is defined as a cultural artifact, which is especially visible in a society s economic and industrial decision making process. Those managers

More information

Algebra 1 Mathematics: to Hoover City Schools

Algebra 1 Mathematics: to Hoover City Schools Jump to Scope and Sequence Map Units of Study Correlation of Standards Special Notes Scope and Sequence Map Conceptual Categories, Domains, Content Clusters, & Standard Numbers NUMBER AND QUANTITY (N)

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

PERT Practice Test #2

PERT Practice Test #2 Class: Date: PERT Practice Test #2 Multiple Choice Identify the choice that best completes the statement or answers the question. Ê 1. What is the quotient of 6y 6 9y 4 + 12y 2 ˆ Ê 3y 2 ˆ? a. 2y 4 + 3y

More information

Identify polynomial functions

Identify polynomial functions EXAMPLE 1 Identify polynomial functions Decide whether the function is a polynomial function. If so, write it in standard form and state its degree, type, and leading coefficient. a. h (x) = x 4 1 x 2

More information

Numerical Computations in Algebraic Geometry. Jan Verschelde

Numerical Computations in Algebraic Geometry. Jan Verschelde Numerical Computations in Algebraic Geometry Jan Verschelde University of Illinois at Chicago Department of Mathematics, Statistics, and Computer Science http://www.math.uic.edu/ jan jan@math.uic.edu AMS

More information

Chapter Six. Polynomials. Properties of Exponents Algebraic Expressions Addition, Subtraction, and Multiplication Factoring Solving by Factoring

Chapter Six. Polynomials. Properties of Exponents Algebraic Expressions Addition, Subtraction, and Multiplication Factoring Solving by Factoring Chapter Six Polynomials Properties of Exponents Algebraic Expressions Addition, Subtraction, and Multiplication Factoring Solving by Factoring Properties of Exponents The properties below form the basis

More information

SMSU Mathematics Course Content

SMSU Mathematics Course Content Southwest Minnesota State University Department of Mathematics SMSU Mathematics Course Content 2012-2013 Thefollowing is a list of possibletopics and techniques to cover in your SMSU College Now course.

More information

ADDITIONAL MATHEMATICS

ADDITIONAL MATHEMATICS ADDITIONAL MATHEMATICS GCE Ordinary Level (Syllabus 4018) CONTENTS Page NOTES 1 GCE ORDINARY LEVEL ADDITIONAL MATHEMATICS 4018 2 MATHEMATICAL NOTATION 7 4018 ADDITIONAL MATHEMATICS O LEVEL (2009) NOTES

More information

THE POLYNOMIAL X3 8 IS EQUAL TO EBOOK

THE POLYNOMIAL X3 8 IS EQUAL TO EBOOK 12 June, 2018 THE POLYNOMIAL X3 8 IS EQUAL TO EBOOK Document Filetype: PDF 151.05 KB 0 THE POLYNOMIAL X3 8 IS EQUAL TO EBOOK I will first set x - 1 equal to. Several examples with solutions are included.

More information

Common Core State Standards for Mathematics - High School PARRC Model Content Frameworks Mathematics Algebra 2

Common Core State Standards for Mathematics - High School PARRC Model Content Frameworks Mathematics Algebra 2 A Correlation of CME Project Algebra 2 Common Core 2013 to the Common Core State Standards for , Common Core Correlated to the Number and Quantity The Real Number System N RN Extend the properties of exponents

More information

Table of mathematical symbols - Wikipedia, the free encyclopedia

Table of mathematical symbols - Wikipedia, the free encyclopedia Página 1 de 13 Table of mathematical symbols From Wikipedia, the free encyclopedia For the HTML codes of mathematical symbols see mathematical HTML. Note: This article contains special characters. The

More information

Degree of a polynomial

Degree of a polynomial Variable Algebra Term Polynomial Monomial Binomial Trinomial Degree of a term Degree of a polynomial Linear A generalization of arithmetic. Letters called variables are used to denote numbers, which are

More information

EE731 Lecture Notes: Matrix Computations for Signal Processing

EE731 Lecture Notes: Matrix Computations for Signal Processing EE731 Lecture Notes: Matrix Computations for Signal Processing James P. Reilly c Department of Electrical and Computer Engineering McMaster University September 22, 2005 0 Preface This collection of ten

More information

Lesson 2: Introduction to Variables

Lesson 2: Introduction to Variables Lesson 2: Introduction to Variables Topics and Objectives: Evaluating Algebraic Expressions Some Vocabulary o Variable o Term o Coefficient o Constant o Factor Like Terms o Identifying Like Terms o Combining

More information

Chapter 2 Polynomial and Rational Functions

Chapter 2 Polynomial and Rational Functions Chapter 2 Polynomial and Rational Functions Section 1 Section 2 Section 3 Section 4 Section 5 Section 6 Section 7 Quadratic Functions Polynomial Functions of Higher Degree Real Zeros of Polynomial Functions

More information

Solving Linear Equations

Solving Linear Equations Solving Linear Equations Golden Rule of Algebra: Do unto one side of the equal sign as you will do to the other Whatever you do on one side of the equal sign, you MUST do the same exact thing on the other

More information

Algebraic Expressions

Algebraic Expressions ALGEBRAIC EXPRESSIONS 229 Algebraic Expressions Chapter 12 12.1 INTRODUCTION We have already come across simple algebraic expressions like x + 3, y 5, 4x + 5, 10y 5 and so on. In Class VI, we have seen

More information

Optimization Theory. Linear Operators and Adjoints

Optimization Theory. Linear Operators and Adjoints Optimization Theory Linear Operators and Adjoints A transformation T. : X Y y Linear Operators y T( x), x X, yy is the image of x under T The domain of T on which T can be defined : D X The range of T

More information

Sample. An Incremental Development. John H. Saxon, Jr. Third Edition. Used by Permission SAXON PUBLISHERS, INC.

Sample. An Incremental Development. John H. Saxon, Jr. Third Edition. Used by Permission SAXON PUBLISHERS, INC. An Incremental Development Third Edition John H. Saxon, Jr. SAXON PUBLISHERS, INC. Algebra 1: An Incremental Development Third Edition Copyright 2003 by Saxon Publishers, Inc. All rights reserved. No part

More information

Chetek-Weyerhaeuser High School

Chetek-Weyerhaeuser High School Chetek-Weyerhaeuser High School Unit 1 Variables and Expressions Math RtI Units and s Math RtI A s 1. I can use mathematical properties to evaluate expressions. I can use mathematical properties to evaluate

More information

Algorithms. Shanks square forms algorithm Williams p+1 Quadratic Sieve Dixon s Random Squares Algorithm

Algorithms. Shanks square forms algorithm Williams p+1 Quadratic Sieve Dixon s Random Squares Algorithm Alex Sundling Algorithms Shanks square forms algorithm Williams p+1 Quadratic Sieve Dixon s Random Squares Algorithm Shanks Square Forms Created by Daniel Shanks as an improvement on Fermat s factorization

More information

When you square a binomial, you can apply the FOIL method to find the product. You can also apply the following rules as a short cut.

When you square a binomial, you can apply the FOIL method to find the product. You can also apply the following rules as a short cut. Squaring a Binomial When you square a binomial, you can apply the FOIL method to find the product. You can also apply the following rules as a short cut. Solve. (x 3) 2 Step 1 Square the first term. Rules

More information

ADDITIONAL MATHEMATICS

ADDITIONAL MATHEMATICS ADDITIONAL MATHEMATICS GCE NORMAL ACADEMIC LEVEL (016) (Syllabus 4044) CONTENTS Page INTRODUCTION AIMS ASSESSMENT OBJECTIVES SCHEME OF ASSESSMENT 3 USE OF CALCULATORS 3 SUBJECT CONTENT 4 MATHEMATICAL FORMULAE

More information

Accuplacer Review Workshop. Elementary Algebra Part II. Week Three. Includes internet links to instructional videos for additional resources:

Accuplacer Review Workshop. Elementary Algebra Part II. Week Three. Includes internet links to instructional videos for additional resources: Accuplacer Review Workshop Elementary Algebra Part II Week Three Includes internet links to instructional videos for additional resources: http://www.mathispower4u.com (Arithmetic Video Library) http://www.purplemath.com

More information

Algebra One Dictionary

Algebra One Dictionary Algebra One Dictionary Page 1 of 17 A Absolute Value - the distance between the number and 0 on a number line Algebraic Expression - An expression that contains numbers, operations and at least one variable.

More information

Algebra 1. Correlated to the Texas Essential Knowledge and Skills. TEKS Units Lessons

Algebra 1. Correlated to the Texas Essential Knowledge and Skills. TEKS Units Lessons Algebra 1 Correlated to the Texas Essential Knowledge and Skills TEKS Units Lessons A1.1 Mathematical Process Standards The student uses mathematical processes to acquire and demonstrate mathematical understanding.

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

MATH 423 Linear Algebra II Lecture 3: Subspaces of vector spaces. Review of complex numbers. Vector space over a field.

MATH 423 Linear Algebra II Lecture 3: Subspaces of vector spaces. Review of complex numbers. Vector space over a field. MATH 423 Linear Algebra II Lecture 3: Subspaces of vector spaces. Review of complex numbers. Vector space over a field. Vector space A vector space is a set V equipped with two operations, addition V V

More information