Solving Algebraic Equations

Slides:



Advertisements
Similar presentations
SECOND-ORDER DIFFERENTIAL EQUATIONS
Advertisements

Differential Equations
Solve a System Algebraically
Indefinite Integrals 6.1. Integration - Antidifferentiation - method of solution to a differential equation INdefinite Integral Integration Symbol Variable.
Complex Numbers S. Awad, Ph.D. M. Corless, M.S.E.E. E.C.E. Department University of Michigan-Dearborn Math Review with Matlab: Complex Math.
Calculus S. Awad, Ph.D. M. Corless, M.S.E.E. E.C.E. Department University of Michigan-Dearborn Math Review with Matlab: Differentiation.
Differential Equations Math Review with Matlab: Finding Solutions to Differential Equations S. Awad, Ph.D. M. Corless, M.S.E.E. D. Cinpinski E.C.E. Department.
Calculus S. Awad, Ph.D. M. Corless, M.S.E.E. D. Cinpinski E.C.E. Department University of Michigan-Dearborn Math Review with Matlab: Taylor’s Series.
Calculus S. Awad, Ph.D. M. Corless, M.S.E.E. D. Cinpinski E.C.E. Department University of Michigan-Dearborn Math Review with Matlab: Limits.
Math Review with Matlab: Application: Solving Differential Equations
Math 015 Section 6.1 Equations. Many students like to remember the process for solving linear equations as: any algebra expressions on each side variable.
Complex Numbers Section 2.1. Objectives Rewrite the square root of a negative number as a complex number. Write the complex conjugate of a complex number.
Solving Algebraic Equations S. Awad, Ph.D. M. Corless, M.S.E.E. D. Cinpinski E.C.E. Department University of Michigan-Dearborn Math Review with Matlab:
Warm Up. 7.4 A – Separable Differential Equations Use separation and initial values to solve differential equations.
Table of Contents Solving Linear Systems of Equations - Substitution Method Recall that to solve the linear system of equations in two variables... we.
3-3 Solving Multiplication Equations. Solve Solution GOAL Find the value of the variable that makes the equation TRUE. The value that makes the equation.
S. Awad, Ph.D. M. Corless, M.S.E.E. E.C.E. Department University of Michigan Math Review with Matlab: Fundamentals Symbolic Math Toolbox.
TODAY IN ALGEBRA…  Warm Up: Solving a system by Elimination  Learning Goal: 7.4 You will solve systems of linear equations by Elimination with multiplication.
S. Awad, Ph.D. M. Corless, M.S.E.E. E.C.E. Department University of Michigan-Dearborn Laplace Transform Math Review with Matlab: Calculating the Laplace.
3-2 Solving Systems Algebraically (p. 125) Algebra 2 Prentice Hall, 2007.
Solving Linear Systems by Linear Combinations
TODAY IN ALGEBRA…  Learning Goal: 7.2 You will solve systems of linear equations by Substitution  Independent Practice.
ISAT 412 -Dynamic Control of Energy Systems (Fall 2005)
Equality and Inequality Meeting 4. Equations An equation is a statement that two mathematical expressions are equal. The values of the unknown that make.
1.3 The Intersection Point of Lines System of Equation A system of two equations in two variables looks like: – Notice, these are both lines. Linear Systems.
Role of Zero in Factoring
Algebra By : Monte. Term The number or an Expression that are added in a sum.
Introduction To this point MATLAB has been used to answer questions with a numeric value ▫Variables are assigned specific values ▫Answers are numbers MATLAB.
Solving Systems of Equations Algebraically STEPS: 1.Solve for a variable in either equation. Get variable alone (x or y) 2.Substitute for this variable.
Solving Linear Systems of Equations - Substitution Method Recall that to solve the linear system of equations in two variables... we need to find the value.
First-order linear equations
1 Beginning & Intermediate Algebra – Math 103 Math, Statistics & Physics.
Class 20, November 10, 2015 Lessons 3.6 & 3.7.  By the end of this lesson, you should understand that: ◦ Addition and subtraction are inverse operations.
3.1 – Solve Linear Systems by Graphing A system of two linear equations in two variables x and y, also called a linear system, consists of two equations.
Solving Linear Systems by Substitution
Warm Up Simplify.  3   15  (9 + 2)  7  5
$100 $200 $300 $400 $100 $200 $300 $400 $300 $200 $100 Writing variable equations Find variables in addition equations Find variables in subtraction.
Ch. 6.4 Solving Polynomial Equations. Sum and Difference of Cubes.
System of Equations Solve by Substitution. A System of Equations:  Consists of two linear equations  We want to find out information about the two lines:
Objective solve systems of equations using elimination.
Algebra Review. Systems of Equations Review: Substitution Linear Combination 2 Methods to Solve:
TODAY IN ALGEBRA 2.0…  Review: Solving Linear Systems by Graphing  Learning Goal 1: 3.2 Solving Linear Systems by Substitution with one equation solved.
Section 9.4 – Solving Differential Equations Symbolically Separation of Variables.
Section 2.5 – Quadratic Equations
Solving Linear Systems by Substitution
Linear Equations Constant Coefficients
Solve by Graphing Solve: 3x + 4y = - 4 x + 2y = 2
10.1 SYSTEMS OF LINEAR EQUATIONS: SUBTRACTION, ELIMINATION.
Equations Quadratic in form factorable equations
Algebra.
1-5 Equations Goals: Solve equations with one variable
Solve Linear Systems by Graphing
Solving Systems of Equations
Warm-Up 2-1.
Solving Linear Systems by Graphing
Solving Linear Systems Algebraically
Solve a system of linear equation in two variables
Solving Equations with variables on each side
Graphing systems of linear equations and inequalities
The student will be able to:
Solving Linear Inequalities
Evaluating Algebraic Expressions
SECTION 2-4 : SOLVING EQUATIONS WITH THE VARIABLE ON BOTH SIDES
Equations Quadratic in form factorable equations
Algebraic Expression A number sentence without an equal sign. It will have at least two terms and one operations.
Algebra: Variables and Expressions
Symbols, Variables, and Types of Sentences used in Algebra.
Equations Chapter 7.1.
1. How do I Solve Linear Equations
Variables.
Presentation transcript:

Solving Algebraic Equations 4/11/2017 Math Review with Matlab: Solving Algebraic Equations Algebraic Equations with Multiple Variables S. Awad, Ph.D. M. Corless, M.S.E.E. D. Cinpinski E.C.E. Department University of Michigan-Dearborn

Solving Algebraic Equations with Multiple Variables Solve Command for Equations of Multiple Variables Single Equation of Two Variables Example Two Variable Complex Solution Example System of Equations Example System of Equations with Symbolic Constant Example

Solve Command for Equations of Multiple Variables The solve command can be used to solve symbolic expressions with more than one variable: solve(f) solves the symbolic expression f using the symbolic variable closest to x as the independent variable solve(f, v) solves the symbolic expression f in terms of the independent variable v

Single Equation of Two Variables Example Given the equation: 1) Find the solution of the equation assuming that c is the solution variable 2) Find the solution of the equation assuming that b is the solution variable

Default Solution Solve for c as the independent variable c is the default variable since it is closest to x » syms b c » f=b^2+4*c+2*b; » sol_c=solve(f) sol_c = -1/4*b^2-1/2*b

Solve for b Solve for b as the independent variable b must be explicitly specified on the command line » sol_b=solve(f,b) sol_b = [ -1+(1-4*c)^(1/2)] [ -1-(1-4*c)^(1/2)]

Two Variable Complex Solution Example Given the equation of two variables: Solve for x in terms of y using Matlab: » syms x y » xs=solve(x^2+9*y^4) xs = [ 3*i*y^2] [ -3*i*y^2] Roots are Complex Conjugates

System of Equations Example Solve the system of consistent linear equations: » syms x1 x2 x3 » f1='3*x1-x2+2*x3=12'; » f2='x1+2*x2+3*x3=11'; » f3='2*x1-2*x2+x3=2'; » [x1 x2 x3]=solve(f1,f2,f3) x1 = 7 x2 = 5 x3 = -2

System of Equations with Symbolic Constant Example Solve the two equations: x and y are independent variables a is a constant » syms x y a » s=solve(x+6*y-a,2*x-3*y-9) s = x: [1x1 sym] y: [1x1 sym] s is a structure

Viewing Structures The solution is a structure with named fields x and y representing symbolic expressions s = x: [1x1 sym] y: [1x1 sym] » xs=s.x xs = 18/5+1/5*a » ys=s.y ys = -3/5+2/15*a View each symbolic expression separately Expressions are in terms of symbolic variable a

Summary The solve command can be used to solve: A single equation in terms of an independent variable A system of multiple consistent equations A system of equations having symbolic variables and symbolic constants