Anne Calder & Alan Cordero. Goals Create 1000 random polynomials up to degree 100 Calculate the number of real zeros on average for each degree Check.

Slides:



Advertisements
Similar presentations
4.4 Rational Root Theorem.
Advertisements

Notes 6.6 Fundamental Theorem of Algebra
Polynomial Functions and Models Lesson 4.2. Review General polynomial formula a 0, a 1, …,a n are constant coefficients n is the degree of the polynomial.
Creating Polynomials Given the Zeros.. What do we already know about polynomial functions? They are either ODD functions They are either EVEN functions.
Solving Quadratic Equations Algebraically Lesson 2.2.
Power Functions and Models; Polynomial Functions and Models February 8, 2007.
Damped random walks and the spectrum of the normalized laplacian on a graph.
Polynomial Functions and Models Section 5.1. Polynomial Functions.
Quadratic Functions Section 2.1. Quadratic  A polynomial function of degree “2”  The graph is a parabola  The inverse of a quadratic DNE because it.
Biostatistics: Measures of Central Tendency and Variance in Medical Laboratory Settings Module 5 1.
Notes Over 6.7 Finding the Number of Solutions or Zeros
Review SYNTHETIC DIVISION to find roots of third degree characteristic polynomial Pamela Leutwyler.
7.1 and 7.2 Graphing Inequalities 7.3 Solving Equations Using Quadratic Techniques Algebra II w/ trig.
Correlation and Prediction Error The amount of prediction error is associated with the strength of the correlation between X and Y.
7.5.1 Zeros of Polynomial Functions
2.4 – Real Zeros of Polynomial Functions
1 Using the Fundamental Theorem of Algebra.  Talk about #56 & #58 from homework!!!  56 = has -1 as an answer twice  58 = when you go to solve x 2 +
July, 2000Guang Jin Statistics in Applied Science and Technology Chapter 7 - Sampling Distribution of Means.
Calculus 3.4 Manipulate real and complex numbers and solve equations AS
REVIEW OF UNIT 4.
Quadratic Functions (4) What is the discriminant What is the discriminant Using the discriminant Using the discriminant.
Probability of Real Zeros with Random Polynomials By Anne Calder & Alan Cordero.
Graphing. Graph: y = - 3x NOTE: Here are some more like this: y = x y = 1.2 x y = 1/3 x y = 4 x THEY ALL HAVE A “x” and a “ y “ but NOTHING added or subtracted.
LESSON 5.6 Rational Zeros of Polynomial Functions.
Measures of Variation Range Standard Deviation Variance.
Chapter 4: Polynomial and Rational Functions. 4-2 Quadratic Equations For a quadratic equation in the form ax 2 + bx + c = 0 The quadratic Formula is.
Section 3.4 – Zeros of a Polynomial. Find the zeros of 2, -3 (d.r), 1, -4.
Bellwork Perform the operation and write the result in standard from ( a + bi)
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.
Precalculus Section 2.5 Approximate real roots of polynomials using graphing calculators Note: The solution to x 2 + 2x – 8 = 0 is found by (x+4)(x-2)
Grudgeball! Unit 4 (Part 2) Test Review. Factor completely:
13.3 Product of a Scalar and a Matrix.  In matrix algebra, a real number is often called a.  To multiply a matrix by a scalar, you multiply each entry.
Correlation and Linear Regression Chapter 13 McGraw-Hill/Irwin Copyright © 2012 by The McGraw-Hill Companies, Inc. All rights reserved.
WARM - UP 1.Given the following information sketch a graph of the polynomial: 2.Find all of the roots of the following polynomial:
14.0 Math Review 14.1 Using a Calculator Calculator
Chapter 24 Comparing Means.
Complex Eigenvalues kshum ENGG2420B.
Roots and Zeros 5.7.
When solving #30 and #34 on page 156, you must “complete the square.”
Notes Over 3.4 The Rational Zero Test
Algebra II Explorations Review ( )
Algebra 2/Trigonometry Name __________________________
25 Math Review Part 1 Using a Calculator
5.6 – Find the Rational Zeros
2.2(a) Notes: Polynomial Functions of Higher Degree
Rational Root Theorem Math 3 MM3A1.
Precalculus PreAP/Dual, Revised ©2017
Warmup Solve:
f(x) =2x2 + 4x + 3 f(x) =2(x + 1) f(x) =2(x + 1)2 + 1
1. Use the quadratic formula to find all real zeros of the second-degree polynomial
Algebra 2/Trigonometry Name __________________________
List all possible rational zeros given by the rational zeros theorem (but don't check to see which actually are zeros). {image} Choose the answer.
6-4 Symmetric Matrices By毛.
Warm-up: Find the equation of a quadratic function in standard form that has a root of 2 + 3i and passes through the point (2, -27). Answer: f(x) = -3x2.
Solving Polynomial Equations
Warm Up Simplify: a)
Graph Polynomials Effect of Multiplicity on a graph
Polynomial Functions and Their Graphs
5-Minute Check Lesson 4-1.
Jeopardy Q $100 Q $100 Q $100 Q $100 Q $100 Q $200 Q $200 Q $200
Fundamental Theorem of Algebra
Students, Take out your calendar and your homework
Fundamental Theorem of Algebra
Graph Polynomials Effect of Multiplicity on a graph
Zeros of polynomial functions
Solving Special Cases.
Daily Checks From Yesterday!
Preview to 6.7: Graphs of Polynomial
Empirical Distributions
Generating Random Matrices
Presentation transcript:

Anne Calder & Alan Cordero

Goals Create 1000 random polynomials up to degree 100 Calculate the number of real zeros on average for each degree Check our results with the Kac Formula Change the way our coefficients are chosen and check the average number of real zeros Create random matrices and check the number of real eigenvalues

Review Kac Formula for finding the expected amount of real zeros of a random polynomial Coefficients are chosen from a standard normal distribution

Random Polynomial Example Create a random polynomial of degree 5 >> x=randn([1 6]) What polynomial would look like x x x x x =0

Roots of the polynomial >> roots(x) ans = i i i i

Simulating 1000 random polynomials N=1000; % 1000 simulations x=zeros(1000, 5); % creates a empty 1000 x 5 matrix for k=1:N x(k,:) = roots(randn([1 6])); % calculates the roots end after each simulation size(x(imag(x)==0)) /1000 % displays the average number of real zeros

Kac Plot Comparison N=100; En = zeros(1,N); for i=1:N En(i) = x.^2).^2 - (i+1)^2*x.^(2*i)./(1- x.^(2*i+2)).^2),0,1); end plot(1:N,En)

Kac Plot Comparison

Proportion of Real Zeros Comparison

Different Coefficients rand – a random number from the standard uniform distribution on the open interval (0,1) rand -.5 – a random number from the uniform distribution on the open interval (-.5,.5)

Graphs of Different Coefficients

How many eigenvalues of a random matrix are real? The expected number of real eigenvalues with independent standard normal entries is:

Eigenvalue Code Simulating 1000 Random Matrices n=1000; Y=zeros(1,n); %creates an empty 1:n empty matrix X=[1:n]; for i=1:n A=randn(i); %creates a matrix size n with random entries e=eig(A); %eigenvalues of a s=size(e(imag(e)==0)); %amount of real eigenvalues p=s(1) Y(i)=p; plot(X,Y,'b.') title('Amount of real eigenvalues') xlabel('n - Size of square matrix') ylabel('Amount of real eigenvalues') end

The data doesn’t change dramatically with the change of how the coefficients are chosen.

Proportion of Real Eigenvalues Comparison

Questions?