Roots of a Polynomial: Root of a polynomial is the value of the independent variable at which the polynomial intersects the horizontal axis (the function.

Slides:



Advertisements
Présentations similaires
Primary French Presentation 2 Saying How You Are.
Advertisements

Les choses que j aime Learning Objective: To know how to use j aime to talk about things I like to do.
Les Mots Interrogatifs
WALT: Recognise and use phrases in the past tense with opinions of leisure activities. WILF: To be able to use opinions in the past tense. You must be.
Irregular Adjectives Not all adjectives are made the same.
What’s the weather like?. Look at the verb phrase fait-il above Turn it around and you have il fait The phrase Il fait can be used to describe lots of.
U NITE 7A: E CHAUFFEMENT 1 L E PREMIER OCTOBRE Le mot juste Fill in each blank with an appropriate vocabulary word. 1. M. Tremaine doit ( must ) avoir.
Clique Percolation Method (CPM)
Put these phrases into 4 categories, and decide on a title for each category. There may be more than one possible answer! boire de l’eau manger des fruits.
Making PowerPoint Slides Avoiding the Pitfalls of Bad Slides.
PERFORMANCE One important issue in networking is the performance of the network—how good is it? We discuss quality of service, an overall measurement.
10/10/ Finite Difference Method Major: All Engineering Majors Authors: Autar Kaw, Charlie Barker
An Introduction To Two – Port Networks The University of Tennessee Electrical and Computer Engineering Knoxville, TN wlg.
 Components have ratings  Ratings can be Voltage, Current or Power (Volts, Amps or Watts  If a Current of Power rating is exceeded the component overheats.
The cancer is a deadly disease, it starts when cells in the body begin to grow out of control and multiply too much. Cancer can start almost anywhere in.
CNC Turning Module 1: Introduction to CNC Turning.
5 Mins 2y+8=20 3f+2=2f+6 6t+1=t+11 3x+2=2x+7 2m+ 7=25 3j-2=19 8+j=15
1MPES2 Multiply Polynomials
Leçon 6: Une Invitation Unité 7.
boire beaucoup d’alcool faire du sport dormir suffisament
Formules en 2 étapes 1MPES4
Infinitive There are 3 groups of REGULAR verbs in French: verbs ending with -ER = 1st group verbs ending with -IR = 2nd group verbs ending with -RE = 3rd.
The Passé Composé Tense
There exists more negatives than just Ne…pas
Mon enfance Quand tu étais petit, tu étais comment?
l y a which we have already learned means “there is/are l y a which we have already learned means “there is/are.” When we put a measure of time.
Reflective verbs or Pronominal verbs
ÊTRE To be (ou: n’être pas!).
Statistics & Econometrics Statistics & Econometrics Statistics & Econometrics Statistics & Econometrics Statistics & Econometrics Statistics & Econometrics.
Français I – Leçon 6A Structures
French 1st Level The Weather.
Les Fruits :.
C’est la baleine
There are so many types of sports. For example-: Basketball,volleyball, cricket, badminton, table tennis, football, lawn tennis etc.
1 Introduction To Resonant Circuits University of Tennessee, Knoxville ECE Department wlg.
in French and in English
Leadership Styles Mrs. Keith Main Types of Leadership Styles 1.The Autocratic or Authoritarian Leader 2.The Democratic or Participative Leader.
Quel type de compétences peut-on apprendre en participant à des activités de robotique? Recherche et raisonnement déductif.
G. Peter Zhang Neurocomputing 50 (2003) 159–175 link Time series forecasting using a hybrid ARIMA and neural network model Presented by Trent Goughnour.
Lect12EEE 2021 Differential Equation Solutions of Transient Circuits Dr. Holbert March 3, 2008.
Essai
Introduction to Computational Journalism: Thinking Computationally JOUR479V/779V – Computational Journalism University of Maryland, College Park Nick Diakopoulos,
C’est quel numéro? Count the numbers with pupils.
Le soir Objectifs: Talking about what you do in the evening
Qu’est-ce que tu as dans ta trousse?
Qu’est-ce que tu as dans ta trousse?
MATLAB Basics With a brief review of linear algebra by Lanyi Xu modified by D.G.E. Robertson.
Connaissez-vous la France ?
C’est quel numéro? Count the numbers with pupils.
Connaissez-vous la France ?
1-1 Introduction to ArcGIS Introductions Who are you? Any GIS background? What do you want to get out of the class?
WRITING A PROS AND CONS ESSAY. Instructions 1. Begin your essay by introducing your topic Explaining that you are exploring the advantages and disadvantages.
Les Verbes Réfléchis What you do to yourself.
What’s the weather like?
5 Whys A technique for getting past first impressions and finding the root cause of a problem.
Making PowerPoint Slides Avoiding the Pitfalls of Bad Slides.
POWERPOINT PRESENTATION FOR INTRODUCTION TO THE USE OF SPSS SOFTWARE FOR STATISTICAL ANALISYS BY AMINOU Faozyath UIL/PG2018/1866 JANUARY 2019.
The Passé Composé Tense
Les Comparaisons.
Travail de cloche Que buvez vous avec votre dÎner?
1 Sensitivity Analysis Introduction to Sensitivity Analysis Introduction to Sensitivity Analysis Graphical Sensitivity Analysis Graphical Sensitivity Analysis.
Travail de cloche Pensez à un personnage du livre que vous venez de finir. Quel cadeau, que vous pouvez acheter à Amazon.com, voulez-vous lui donner?
Le Passé Composé (Perfect Tense)
Les Mots Intérrogatifs
Lequel The Last Part.
How do you say I like and I don’t like in French???
Les opinions Les opinions = Opinions. In this lesson pupils will learn to understand and give their own opinions about singular items.
L’orchestre des animaux
3rd February, 2016 Alstom Controlling. © ALSTOM All rights reserved. Information contained in this document is indicative only. No representation.
Double Vision the art of seeing more than one thing
Transcription de la présentation:

Roots of a Polynomial: Root of a polynomial is the value of the independent variable at which the polynomial intersects the horizontal axis (the function has zero value). The formulae for the roots of a 2 nd degree polynomial are given below The formulae for the roots of a 3 rd degree polynomial are given below First root (of three)

The Matlab program can be used to calculate the roots of an n degree polynomial. Roots of a Polynomial: Example: Find the roots of the given polynomial. >>p=[ ]; roots(p) ans = i i Example: Find the roots of the given polynomial. ans = i i i i >>p=[ ]; roots(p) All coefficients including those with zero must be specified. Otherwise the polynomial degree will be reduced.

NEWTON-RAPHSON ITERATION METHOD ε (error) Solutions of Nonlinear Equations: The Newton-Raphson method, or Newton’s method, is a powerful technique for solving equations numerically. Like so much of the differential calculus, it is based on the simple idea of linear approximation. This method is a method for finding s u ccessively better approximations to the real roots (or zeroes) of a real valued function. f(x) xxixi (İnitial value) f(x i )-0 X i+1 Slope at this point is f ' (x i ) f(x i ) 0 Tangent line Solutions of Nonlinear Equations:

Newton-Raphson Example 1: Solutions of Nonlinear Equations: Find one of the θ values, which satisfies the given equation. θff 'ε e-5

Solutions of Nonlinear Equations: Newton-Raphson Example 2: Find one of the u values, which satisfies the given equation. uff 'ε e-5

Solutions of Nonlinear Equations: clc, clear x=1;xe=0.001*x; niter=20; % for n=1:niter % f=x^2-4+sqrt(x+1); df=2*x+0.5/(sqrt(x+1)); % x1=x x=x1-f/df if abs(x-x1)<xe kerr=0;break end kerr,x clc, clear x=1;xe=0.001*x; niter=20; % for n=1:niter % f=5*x-cos(3*x)-1.6; df=5+3*sin(3*x); % x1=x x=x1-f/df if abs(x-x1)<xe kerr=0;break end kerr,x Newton-Raphson Example 1:Newton-Raphson Example 2: MATLAB CODES x = = The following changes are made in the program (nr1.m) to solve the problems.

Solutions of Nonlinear Equations: Newton-Raphson iteration method is used to solve the nonlinear system of equations. Since there are more than one equations and unknown variables, partial derivatives of the equations with respect to each unkown variable are used in the solution procedure. f 1 (x 1,x 2 )=0 f 2 (x 1,x 2 )=0 Arbitrary initial values for x 1 and x 2 are assigned and the iteration procedure is started by making the necessary changes in the computer program (newtonrn). The variables are stated as x() in the program. Newton-Raphson Example 3: The equation of a circle with center coordinates (3,2) and a radius 5 is given on the right hand side. How do you find the intersection point of this circle and the parabola y=x 2 ?

Solutions of Nonlinear Equations: The following changes are made in the program (nr.m) to solve the problem x y (-1.82, 3.321) (2.643, 6.987) As shown in the figure, there are two valid solution sets. The output solution set is determined by the initial values of the unkown variables. clc, clear x=[1 4] ; fe=[ ]; niter1=5;niter2=50; fe=transpose(abs(fe));kerr=1; for n=1:niter2 x %Error Equations a(1,1)=2*(x(1)-3);a(1,2)=2*(x(2)-2); a(2,1)=-2*x(1);a(2,2)=1; b(1)=-((x(1)-3)^2+(x(2)-2)^2-25); b(2)=-(x(2)-x(1)^2); % bb=transpose(b);eps=inv(a)*bb;x=x+transpose(eps); if n>niter1 if abs(eps)<fe kerr=0; break else display ('Roots are not found') end