Jonathan Choate Groton School

Slides:



Advertisements
Similar presentations
Aim: How do we find the zeros of polynomial functions?
Advertisements

Notes 6.6 Fundamental Theorem of Algebra
STROUD Worked examples and exercises are in the text PROGRAMME F6 POLYNOMIAL EQUATIONS.
Rational Root Theorem.
Complex Numbers The imaginary number i is defined as so that Complex numbers are in the form a + bi where a is called the real part and bi is the imaginary.
Creating Polynomials Given the Zeros.. What do we already know about polynomial functions? They are either ODD functions They are either EVEN functions.
SECTION 3.6 COMPLEX ZEROS; COMPLEX ZEROS; FUNDAMENTAL THEOREM OF ALGEBRA FUNDAMENTAL THEOREM OF ALGEBRA.
Solving Quadratic Equations Algebraically Lesson 2.2.
NUMERICAL METHODS WITH C++ PROGRAMMING
Solving Polynomial Equations. Fundamental Theorem of Algebra Every polynomial equation of degree n has n roots!
Lesson 2.5 The Fundamental Theorem of Algebra. For f(x) where n > 0, there is at least one zero in the complex number system Complex → real and imaginary.
Copyright © 2006 Pearson Education, Inc. Publishing as Pearson Addison-Wesley The Fundamental Theorem of Algebra ♦ Perform arithmetic operations on complex.
Solving Quadratic Equations by Factoring
9.9 The Fundamental Theorem of Algebra
Zeros of Polynomial Functions Section 2.5 Page 312.
Fundamental Theorem of Algebra If f(x) is a polynomial of degree n, where n≥1, then the equation f(x) = 0 has at least one complex root. Date: 2.6 Topic:
Real Zeros of a Polynomial Function Objectives: Solve Polynomial Equations. Apply Descartes Rule Find a polynomial Equation given the zeros.
Chapter 3 Polynomial and Rational Functions Copyright © 2014, 2010, 2007 Pearson Education, Inc Zeros of Polynomial Functions.
The Rational Root Theorem The Rational Root Theorem gives us a tool to predict the Values of Rational Roots:
6.6 The Fundamental Theorem of Algebra
Ch 2.5: The Fundamental Theorem of Algebra
Calculus 3.4 Manipulate real and complex numbers and solve equations AS
Using the Fundamental Theorem of Algebra 6.7. Learning Targets Students should be able to… -Use fundamental theorem of algebra to determine the number.
Fundamental Theorem of Algebra TS: Demonstrating understanding of concepts Warm-Up: T or F: A cubic function has at least one real root. T or F: A polynomial.
THE FUNDAMENTAL THEOREM OF ALGEBRA. Descartes’ Rule of Signs If f(x) is a polynomial function with real coefficients, then *The number of positive real.
Complex Zeros and the Fundamental Theorem of Algebra.
Roots & Zeros of Polynomials III Using the Rational Root Theorem to Predict the Rational Roots of a Polynomial Created by K. Chiodo, HCPS.
CSE 2813 Discrete Structures Solving Recurrence Relations Section 6.2.
Copyright © 2011 Pearson, Inc. 2.5 Complex Zeros and the Fundamental Theorem of Algebra.
Chapter 3 Polynomial and Rational Functions Copyright © 2014, 2010, 2007 Pearson Education, Inc Zeros of Polynomial Functions.
Section 4.6 Complex Zeros; Fundamental Theorem of Algebra.
Specialist Mathematics Polynomials Week 3. Graphs of Cubic Polynomials.
Liz Balsam Advisor: Bahman Kalantari.  Term coined by Dr. Kalantari  Polynomial + graph  Definition: the art and science of visualization in the approximation.
Bellwork Perform the operation and write the result in standard from ( a + bi)
LESSON 14 – FUNDAMENTAL THEOREM of ALGEBRA PreCalculus - Santowski.
Today in Pre-Calculus Notes: –Fundamental Theorem of Algebra –Complex Zeros Homework Go over quiz.
1 What you will learn today…  How to use the Fundamental Theorem of Algebra to determine the number of zeros of a polynomial function  How to use your.
2.5 The Fundamental Theorem of Algebra. The Fundamental Theorem of Algebra The Fundamental Theorem of Algebra – If f(x) is a polynomial of degree n, where.
Solve polynomial equations with complex solutions by using the Fundamental Theorem of Algebra. 5-6 THE FUNDAMENTAL THEOREM OF ALGEBRA.
Zeros of Polynomial Fns Algebra III, Sec. 2.5 Objective Determine the number of rational and real zeros of polynomial functions, and find the zeros.
Topic VII: Polynomial Functions 7.3 Solving Polynomial Equations.
PreCalculus Section 2.7 Apply general theorems about polynomials Fundamental Theorem of Algebra In the complex number system, a polynomial of degree n.
Chapter 2 – Polynomial and Rational Functions 2.5 – The Fundamental Theorem of Algebra.
3.5 Complex Zeros & the Fundamental Theorem of Algebra.
The Fundamental Theorem of Algebra and Complete Factorization
Complex Zeros and the Fundamental Theorem of Algebra
Solving Polynomial Functions
Copyright © Cengage Learning. All rights reserved.
Bell Ringer 1. What is the Rational Root Theorem
7.5 Zeros of Polynomial Functions
3.8 Complex Zeros; Fundamental Theorem of Algebra
The Rational Zero Theorem
The Fundamental Theorem of Algebra
Lesson 2.5 The Fundamental Theorem of Algebra
Copyright © 2014, 2010, 2007 Pearson Education, Inc.
Creating Polynomials Given the Zeros.
The Quadratic Formula.
Lesson 2.5 The Fundamental Theorem of Algebra
f(x) =2x2 + 4x + 3 f(x) =2(x + 1) f(x) =2(x + 1)2 + 1
Evaluate Polynomial Functions
The Fundamental Theorem of Algebra And Zeros of Polynomials
The Rational Zero Theorem
Rational Root Theorem.
Solving Special Cases.
Fundamental Theorem of Algebra
Fundamental Theorem of Algebra
Copyright © Cengage Learning. All rights reserved.
Solving Special Cases.
(1) Find all of the zeros of f.
5.6 Complex Zeros; Fundamental Theorem of Algebra
Presentation transcript:

Jonathan Choate Groton School jchoate@groton.org www.zebragraph.com Polynomiography Jonathan Choate Groton School jchoate@groton.org www.zebragraph.com

VCTAL

Iteration Pick a function f[x] Pick a seed x(0) Create a sequence {x(0) , x(1) = f[x(0]], x(2)=f[(x(1)], … ,x(n) = f[x(n-1)], ….} This sequence is the ORBIT of x(0) under iteration of f[x]

An Example Iterate f[x] = (1/2)x + 4 for different seeds. Two Interesting Questions 1) For a given seed does the orbit converge to a value S within a given accuracy? 2) If it does converge, how many iterations does it take? The set of seeds that converge to S is called the BASIN OF ATTRACTION for S and will be denoted by B(S)

Solving Polynomial Equations Formulas exist for Quadratics, Cubics and Quartics Have to use numerical methods for polynomials of degree higher than 4.

The Babylonian Method for Finding Square Roots Iterate f[x] =(1/2)(x + a/x) If a>0 orbits converge to and What is B( )? B( )? What happens if a < 0? What happens if a is complex? Babylonian Method

Newton’s Method Given a function f(x) to solve f(x) =0 iterate the function N[x] = x – f(x)/f’(x) Use the spreadsheet Newton’s Method for Quadratics - Doesn’t handle the complex roots - Doesn’t give much info about the Basins of attraction for the roots. Newton’s Quadratic Analysis

Cayley’s Discovery Use a spreadsheet to apply Newton’s Method to Cubics Basins of Attraction get complicated!! Newton’s Cubic Analysis

Polynomiography Polynomioigraphy

The Fundamental Theorem of Algebra: Version 1 An n-th degree polynomial equation with real co-efficients has n roots with complex roots occuring in pairs. Good Exercise: What are the possible solutions for a quadratic equation with real co-efficients? What are the possible solutions for a cubic equation with real co-efficients?

Good Group Activity Create Poly Images for all the possible 5th degree equations?

Challenge What is the equation of the 6th degree polynomial whose polynomiograph is shown below?

Solutions Real Roots z = 3 , z =4 Complex Roots z = 3 + 3i , z = 3 – 3i , z = 1 + I , z = 1 – I (z -3)(z-4)( z- [3+3i] )(z –[ 3 – 3i ]} )( z- [1+i] )(z –[ 1 – i ]} = 0

DeMoivre’s Theorem: A Visual Approach

Play z12 + z2 – 4z + 54

A Final Linear Thought We teach about arithmetic sequences x(n+1) = x(n) + d / x(0) = c Or x(n) = c + n*d We teach about geometric sequences x(n+1) = r x(n) / x(0) = c x(n) = c rn

How about teaching about mixed sequences? A mixed sequence x(n+1) = r*x(n) + d / x(0) = c Or x(n) = c rn[ c – (d/(1-r) ] + (d/(1-r)

Use the Language of Dynamical Systems Let f(x) = ax + b. F has a fixed point F = b/(1—a) The orbit of x(0) under iteration of f has an n-th iterate equal to x(n) = an( x(0) – F) + F