9 Pages

Notes+on+Newton-Raphson-4

Course: 125 305, Fall 2010
School: Rutgers
Rating:
 
 
 
 
 

Word Count: 1666

Document Preview

on Notes Newton-Raphson A root-solving technique 1. Introduction to Newton-Raphson (Updated 11/3/2010) (Dr. Shoane) Based on geometric interpretation or Taylor series expansion of the function, f(x) at xi. From the geometry of the situation seen in the graph, we have f ( xi ) = Hence f ( xi ) 0 xi xi +1 xi+1 = xi f ( xi ) f ( xi ) The Newton-Raphson algorithm attempts to minimize the difference between...

Register Now

Unformatted Document Excerpt

Coursehero >> New Jersey >> Rutgers >> 125 305

Course Hero has millions of student submitted documents similar to the one
below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.

Course Hero has millions of student submitted documents similar to the one below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.
on Notes Newton-Raphson A root-solving technique 1. Introduction to Newton-Raphson (Updated 11/3/2010) (Dr. Shoane) Based on geometric interpretation or Taylor series expansion of the function, f(x) at xi. From the geometry of the situation seen in the graph, we have f ( xi ) = Hence f ( xi ) 0 xi xi +1 xi+1 = xi f ( xi ) f ( xi ) The Newton-Raphson algorithm attempts to minimize the difference between xi and xi+1 by iteratively updating the next xi value. This continues until xi and xi+1 are very close to each other. The critical point occurs when the function, f, crosses the zero line, which is where the equation f(x)=0 (e.g., x3+2x2+1=0) is satisfied. It can be shown that at this critical point, xi xi+1. Importantly, the value of x at this point is a root (or solution) of the equation f(x)=0. 1 2. Examples Example 1 f ( x) = ( x 3) ( x 1) ( x 1) = x 3 5 x 2 + 7 x 3 = 0 f ( x) = 3 x 2 10 x + 7 xi +1 = xi xi3 5 xi2 + 7 xi 3 3xi2 10 xi + 7 Example 2 f ( x, y ) = x 2 + xy 10 = 0 f ( x, y ) xi +1 = xi df ( x, y ) / dy 3. Video http://www.youtube.com/watch?v=lFYzdOemDj8 4. Code for function newton http://math.fullerton.edu/mathews/n2003/newtonsmethod/New ton%27sMethodProg/Links/Newton%27sMethodProg_lnk_3.html 2 Modified Program Demonstrating Newton-Raphson Technique (Dr. Shoane debugged the above program, and it should run as is, after cleaning up any comments that were moved out of position.) ******** Copy the entire code starting from here to the end of the program ********** function newton_test() % From http://math.fullerton.edu/mathews/n2003/newtonsmethod/Newton %27sMethodProg/Links/Newton%27sMethodProg_lnk_3.html % 1) Modified by Prof. George Shoane 11/2/2010: positions of functions, plus comments at each pause. % 2) The test functions have been put at the end of the program. % 3) It is suggested that the students learn how the function "newton" % works, and then write their own functions to solve any given problem. % This is probably more efficient than trying to input a complicated % nonlinear system equation with two variables to fit the format of the function "newton". % 4) % % % call % % If the nonlinear function consists of 2 variables where one of them is an indpendent variable, then one technique is to update the independent variable and set it as a constant at each iteration. Then the "newton" function can be used directly. The output after the function provides the estimated value of the dependent variable for that particular independent variable value. (Updated 11/3/2010) % 5) Hint: Use symbolic representation to define the function and obtain the % derivative of the function. But do not use the symbolic variables in the % actual root solving program. (Updated 11/3/2010) % THE FOLLOWING SCRIPT FILE WAS USED TO CALL THE NEWTON SUBROUTINE echo on;clc; %--------------------------------------------------------------------------% %A2_5 MATLAB script file for implementing Algorithm 2.5 % % NUMERICAL METHODS:MATLAB Programs,(c) John H.Mathews 1995 % To accompany the text % NUMERICAL METHODS for Mathematics,Science and Engineering,2nd Ed,1992 % Prentice Hall,Englewood Cliffs,New Jersey,07632,U.S.A % Prentice Hall,Inc.;USA,Canada,Mexico ISBN 0-13-624990-6 % Prentice Hall,International Editions:ISBN 0-13-625047-5 % This free software is compliments of the author % E-mail address: "mathews@fullerton.edu" % % Algorithm 2.5 (Newton-Raphson Iteration) % Section 2.4,Newton-Raphson and Secant Methods,Page 84 %---------------------------------------------------------------------------% clear all; close all; format long; 3 %-------------------------% % This program implements the Newton-Raphson method.% % % Define and store the functions f(x) and f'(x) % in the M-files f.m and df.m respectively disp('(1) Display the functions f and df. Press any key'); pause % Press any key to continue % GS clc; %.......................................................... % Begin a section which enters the function(s) necessary for the example % into M-file(s) by executing the diary command in this script file % The preferred programming method is not to use these steps % One should enter the function(s) into the M-file(s) with an editor delete output delete f.m %diary f.m;disp('function y=f(x)');... disp('y=x.^3-x-3;');... diary off; delete df.m %diary df.m;disp('function y1=df(x)');... disp('y1=3*x.^2-1;');... diary off; % Remark.f.m,df.m and newton.m are used for Algorithm 2.5 f(0); df(0); % Test for files f.m,df.m disp('(2) Plot y=f(x) versus x.; Set max iterations to 50. Press any key'); pause % Press any key to see the graph y=f(x).clc; %~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~% % Prepare graphics arrays to plot y=f(x) %~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~% a=-3.0; b=3.0; h=(b-a)/150; X=a:h:b; Y=f(X); % GS clc; figure(1); % GS clf; %~~~~~~~~~~~~~~~~~~~~~~~% % Begin graphics section %~~~~~~~~~~~~~~~~~~~~~~~% a=-3.0; b=3.0; c=-10; d=10; whitebg('w'); plot([a b],[0 0],'b',[0 0],[c d],'b'); axis([a b c d]); axis(axis); hold on; plot(X,Y,'-g'); 4 xlabel('x'); ylabel('y'); title('Graph of y=f(x).'); grid; hold off; disp('(3) Prepare Initial Iterations. Press any key'); figure(gcf);pause % Press any key to perform Newton-Raphson iteration % GS clc; %------------------------------% % Example,page 79 Use Newton-Raphson iteration for finding % a zero of the function f(x)=x^3-x-3. % % Enter the starting value in p0 % Enter the abscissa tolerance in delta % Enter the ordinate tolerance epsilon in % Enter the maximum number of iterations in max1 p0=2.0; delta=1e-12; epsilon=1e-12; max1=50; [p0,y0,err,P]=newton('f','df',p0,delta,epsilon,max1); disp('(4) Show Graphical Anayisis for Newton method. pause % Press any key for the list of iterations % GS clc; %~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~% % Prepare arrays to graph and print results %~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~% a=1.6; b=2.05; h=(b-a)/150; X=a:h:b; Y=f(X); max1=length(P); clear Vx Vy for i=1:max1, k1=2*i-1; k2=2*i; Vx(k1)=P(i); Vy(k1)=0; Vx(k2)=P(i); Vy(k2)=f(P(i)); end Z0=zeros(1,length(P)); % GS clc; figure(2); % GS clf; %~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~% % Begin graphics section for the results %~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~% a=1.6; Press any key'); 5 b=2.05; c=-0.5; d=3.5; whitebg('w'); plot([a b],[0 0],'b',[0 0],[c d],'b'); axis([a b c d]); axis(axis); hold on; plot(X,Y,'-g',Vx,Vy,'-r',P,Z0,'or'); xlabel('x'); ylabel('y'); title('Graphical analysis for Newton`s method.'); grid; hold off; figure(gcf); disp('(5) Print results. Press any key'); pause % Press any key to continue %.......... % Prepare results %.......... J=1:max1; Yp=f(P); points=[J;P';Yp']; % GS clc; %............................................ % Begin section to print the results % Diary commands are included which write all % the results to the Matlab textfile output %............................................ Mx1='Iterations for Newton`s method.'; Mx2=' k p(k) f(p(k))'; Mx3='The solution is:'; Mx4='The error estimate for p is'; % GS clc, echo off,diary output,... disp(''),disp(Mx1),disp(''),disp(Mx2),disp(points'),... disp('Iteration converged quadratically to the root.'),... disp(''),disp(Mx3),disp(''),disp('p='),... disp(p0),disp('f(p)='),disp(y0),... disp([Mx4,num2str(err)]),diary off,echo on disp('(6) This time set max iterations to 12. Press any key'); pause % Press any key to perform Newton-Raphson iteration.clc; %----------------------------------------------------% % Example,page 79 Use Newton-Raphson iteration for finding % a zero of the function f(x)=x^3-x-3. % % Enter the starting value in p0 % Enter the abscissa tolerance in delta % Enter the ordinate tolerance in epsilon % Enter the maximum number of iterations in max1 p0=0.0; 6 delta=1e-12; epsilon=1e-12; max1=12; [p0,y0,err,P]=newton('f','df',p0,delta,epsilon,max1); disp('(7) Plot graph. Press any key'); pause % Press any key for the list of iterations.clc; %~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~% % Prepare arrays to graph and print results %~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~% a=-3.5; b=0.5; h=(b-a)/100; X=a:h:b; Y=f(X); max1=length(P); clear Vx Vy for i=1:max1,k1=2*i-1; k2=2*i; Vx(k1)=P(i); Vy(k1)=0; Vx(k2)=P(i); Vy(k2)=f(P(i)); end Z0=zeros(1,length(P)); % clc; figure(3); % clf; %~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~% % Begin graphics section for the results %~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~% a=-3.5; b=0.5; c=-30; d=5; whitebg('w'); plot([a b],[0 0],'b',[0 0],[c d],'b'); axis([a b c d]); axis(axis); hold on; plot(X,Y,'-g',Vx,Vy,'-r',P,Z0,'or'); xlabel('x'); ylabel('y'); title('Graphical analysis for Newton`s method.'); grid; hold off; figure(gcf); disp('(8) Print results. Press any key'); pause % Press any key to continue %.............. 7 % Prepare results %.............. J=1:max1; Yp=f(P); points=[J;P';Yp']; % GS clc; %............................................ % Begin section to print the results % Diary commands are included which write all % the results to the Matlab textfile output %............................................ Mx1='Iterations for Newton`s method.'; Mx2=' k p(k) f(p(k))'; % GS clc, echo off,diary output,... disp(''),disp(Mx1),disp(''),disp(Mx2),disp(points'),... disp('Iteration did not occur.This is a case of "cycling."'),... diary off,echo on %(c) John H. Mathews 2004 %end function[p0,y0,err,P]=newton(f,df,p0,delta,epsilon,max1) %--------------------------------------------------------% %NEWTON Newton's method is used to locate a root % Sample calls %[p0,y0,err]=newton('f','df',p0,delta,epsilon,max1) %[p0,y0,err,P]=newton('f','df',p0,delta,epsilon,max1) % Inputs % f name of the function % df name of the function's derivative input % p0 starting value % delta convergence tolerance for p0 % epsilon convergence tolerance for y0 % max1 maximum number of iterations % Return % p0 solution:the root % y0 solution:the function value % err error estimate in the solution p0 % P History vector of the iterations % % NUMERICAL METHODS:MATLAB Programs,(c) John H.Mathews 1995 % To accompany the text % NUMERICAL METHODS for Mathematics,Science and Engineering, 2nd Ed,1992 % Prentice Hall,Englewood Cliffs,New Jersey,07632,U.S.A % Prentice Hall,Inc.;USA,Canada,Mexico ISBN 0-13-624990-6 % Prentice Hall,International Editions:ISBN 0-13-625047-5 % This free software is compliments of the author % E-mail address: "mathews@fullerton.edu" % % Algorithm 2.5 (Newton-Raphson Iteration) % Section 2.4,Newton-Raphson and Secant Methods,Page 84 8 %--------------------------------------------------------% P(1)=p0; y0=feval(f,p0); for k=1:max1,df0=feval(df,p0); %if df0&Equal;0,dp=0; if df0 == 0 % GS 11/2/2010 dp=0; % GS 11/2/2010 else dp=y0/df0; end p1=p0-dp; y1=feval(f,p1); err=abs(dp); relerr=err/(abs(p1)+eps); p0=p1; y0=y1; P=[P;p1]; if (err<delta)|(relerr<delta)|(abs(y1)<epsilon),break,end end function y=f(x) y=x.^3-x-3; function y1=df(x) y1=3*x.^2-1; **************************** End of Program **************************** 9
Find millions of documents on Course Hero - Study Guides, Lecture Notes, Reference Materials, Practice Exams and more. Course Hero has millions of course specific materials providing students with the best way to expand their education.

Below is a small sample set of documents:

Rutgers - 125 - 305
Chapter 2 Lecture Notes for Students * Section 1 * Notes on Conversion of Two First Order Equations to a Second Order Model A linear second order system is sometimes represented as a system of two first order differential equations like those in Eqs and b
Rutgers - 125 - 305
Cramer's Rule - Derivation and ExamplesDerivation of Cramer's Rule Given a system of equations:Dr. ShoaneIn matrix form:This can be written in the general formTo solve for x, we multiply both sides of the equation by A-1A-1 can be computed by dividi
Rutgers - 125 - 309
332: 309 biomedical devices &amp; Systems Fall 2010 Dr. Drzewiecki Homework Assignment #3 Due Monday, September 27Do Textbook Problems 2-7,8,9,10.use this page as your cover sheet .staple your answers to it and print and sign your name below NAME signature_
Rutgers - 125 - 309
125:355 Physiological Systems for Biomedical Engineers, Dr. Drzewiecki Fall, 2011Homework Assignment #5, Due Wednesday, 2/16 /11Student Name: _Signature: _ Handwritten Answers Only 1. Whatisthechemicalnatureofreceptors?Wherearetheylocated(Chapter5,Revie
Rutgers - BIO - 102
B io 102 Review TWO REPRODUCTION (49) I. Asexual Reproduction- single parent; genes of offspring are identical to parent (except for parent) a. Benefits of Asexual i. Energy efficient (dont have to have two cells, just one) ii. Successful in a stable envi
Rutgers - 125 - 208
14:125:208: Introduction to Biomechanics Homework Assignment #2 Due 2/04/10Spring 2010Problem 1: (Forces and Moments) Complete the following problems from zkaya and Nordin: a) Problem 3.1= 3 + 8.75 = 5.75 N m (ccw )M O = Wa + F sin b = 20 .15 + 50 sin
Rutgers - 125 - 208
125:208Introduction to BiomechanicsLecture 17-18:Principal Stress I &amp; IIWhat happens if we analyze the stress within a material in regards to differing coordinate systems?For this situation, we apply a tensile load, but what is happening to the diamon
Rutgers - 125 - 208
14:125:208: Introduction to Biomechanics Homework Assignment #5Problem 1:Spring 2010Due 3/04/10Two cylinders are subjected to an equally distributed load F = 6 kN in two different configurations. The aluminum (gray) rod (E = 69 GPa) has a diameter of
Rutgers - 125 - 208
14:125:208: Introduction to Biomechanics Homework Assignment #6Spring 2010Due 3/11/10Problem 1: A unit square OABC is changed to OABC in three ways as shown (a) Extension in x2 but compression in x1 direction (1 and 2 represent infinitesimal, i.e. smal
Rutgers - 125 - 208
14:125:208: Introduction to Biomechanics Homework Assignment #7Problem 1:Spring 2010Due 3/22/10Above two identical beams are subjected to either 3pt bending (top) or 4pt bending (bottom). Both beams are subjected to a net load of 2P. To the right is a
Rutgers - 125 - 208
14:125:208: Introduction to Biomechanics Homework Assignment #9Problem 1: (Curious George Breaks His Leg)Spring 2010Due 4/15/10Curious George is caught defacing private property. While trying to escape he climbs down a fire escape and drops to the gro
Rutgers - 125 - 208
125:208Introduction to BiomechanicsLecture 2: Muscle PhysiologyJeffrey D. Zahn Assistant Professor of Biomedical EngineeringHow do biological systems move?Molecular motors motors MicrotubulesFlagella1How do biological systems move?Actin-Myosin in
Rutgers - 125 - 208
125:208Introduction to BiomechanicsLecture 3: Forces and MomentsJeffrey D. Zahn Assistant Professor of Biomedical Engineering Vectors Have magnitude and direction (described by a unit vector) a = ai + a j + ak = a x i + a y + a z k j Find component
Rutgers - 125 - 208
125:208Introduction to BiomechanicsLecture 4: Coordinate Transform and Center of GravityJeffrey D. Zahn Assistant Professor of Biomedical EngineeringImportant concepts from statics Center of GravityReal objects are not pointobjects are not point mass
Rutgers - 125 - 208
125:208Introduction to BiomechanicsLecture 5: Static Equilibrium and Free Body DiagramsJeffrey D. Zahn Assistant Professor of Biomedical EngineeringCenter of Gravity in Biomechanics COG calculations important for biomechanics problems. Provided anthr
Rutgers - 125 - 208
125:208Introduction to BiomechanicsLecture10: Strain TensorL0LLConsider a string originally of length L0, stretched a distance L to a new length L: L=L0+L We have stretched it L/L0 times itself. We define this as the STRETCH RATIO, and designate it
Rutgers - 125 - 208
125:208Introduction to BiomechanicsLecture 11,12:Intro to BendingStress and strainwhere do they come from? Beamssimple examples where relatively complex stress can be determined analytically. Forces which act perpendicular to the longitudinal axis set
Rutgers - 125 - 208
125:208Introduction to BiomechanicsLecture 14: Shear Stress, Torsion 04/01/10Shear StressShearing Stresses For any beam subjected to a shearing force, V, both h horizontal and vertical shear stresses, , are produced 1Vertical &amp; Horizontal Shear Stre
Rutgers - PHYSICS - 123
UNITS, PHYSICAL QUANTITIES AND VECTORS11.1.IDENTIFY: Convert units from mi to km and from km to ft. SET UP: 1 in. = 2.54 cm , 1 km = 1000 m , 12 in. = 1 ft , 1 mi = 5280 ft . 5280 ft 12 in. 2.54 cm 1 m 1 km EXECUTE: (a) 1.00 mi = (1.00 mi) 2 3 = 1.61 k
Strayer - HSA - 525
Health Care Issues 1Health Care Issues in the United StatesSyretta Larkins Dr. Rose Introduction to Health Service Administration- HSA 500 July 15, 2010In todays society, we experience numerous health issues as U.S. citizens. It is quoted that the Unit
DeVry Chicago - FIN - 364
1. What factors determine the real rate of interest? The real rate of interest is determined by: (a) individual time preference for consumption, and (b) the return that firms expect to earn on their real capital investments. In equilibrium, the real rate
USF - COT - 3100
USF - COT - 3100
USF - COT - 3100
USF - COT - 3100
U. Houston - INTB - 3351
HISTORY OF GLOBALIZATION http:/www.cartoonweb.com/images/globalization/globalization1.gif SPRING 2011 INTB 3351 04-LEC (19593) CEMO 100D Wed 10:00 AM 11:15 AM Professor Csar Seveso Office: 565 Agnes Arnold Hall Phone: 713-743-2672 Email
Phoenix - PHIL - 2
Dissociative Disorders 1Diagnosis and Treatment Laura Koskimaki University of PhoenixDissociative Disorders 2 Introduction There are many types of psychological disorders; some may cause a person to become lost, others may cause individuals to want or c
UCLA - LS - 2
Lecture 4 Another role for proteins is acting as enzymes. Energy, Enzymes, and Metabolism There are a lot of metabolic pathways different enzymes catalyze the different reactions in each pathway. Catalysis occurs due to the 3-D shape of the enzyme. The sh
UCLA - LS - 2
Lecture 5 Where do living organisms get their energy from? Autotrophs (plants) use solar energy to synthesize food compounds. o L ight energy to chemical energy, forming sugar. Heterotrophs (animals) obtain energy by processing the chemical energy in orga
North Texas - CSCI - 4051
Jason BrownleeClever AlgorithmsNature-Inspired Programming RecipesiiJason Brownlee, PhDJason Brownlee studied Applied Science at Swinburne University in Melbourne, Australia, going on to complete a Masters in Information Technology focusing on Nichin
DeVry Kansas City - NETW - 204P
U. Houston - INTB - 101
Effective Business CommunicationIntroduction As everybody knows, business organizations are made up of people, so an effective communication is irreplaceable for a good business. Communication in a business organization provides the critical link between
UMBC - PSYC - 345
Psych theory
UMBC - PSYC - 345
On The Observational Implications of Taste-Based Discrimination in Racial Profiling William A. Brock, Jane Cooley, Steven N. Durlauf and Salvador NavarroJanuary 30, 2010Department of Economics, University of Wisconsin at Madison. This work was supported
CSU Sacramento - MGMT - 21
Pedro Mendez Marsha Jeppeson MGMT 21 12 September 2010 Time Summary Sleep - 62 hours, 10 minutes Hygiene - 6 hours, 10 minutes Eat Lunch - 3 hours, 45 minutes Relax - 39 hours Wash Cars - 2 hours, 35 minutes Homework - 11 hours, 25 minutes Dinner - 3 hour
The University of Akron - ENGLISH - 100
Observation Paper Rebekah Smith-Anderson 3300-111-057Gone but Never Forgotten I ts strange how things can change so drastically in a short t ime. The house that I spent my childhood in now is a constant reminder of heartache. I walk around and the memori
FIU - FIN - 4324
Chapter 1 An Overview of the Changing Financial-Services SectorFill in the Blank Questions 1. _ is a traditional service provided by banks in which the banks store the valuables of their customers and certify their true value. Answer: Safekeeping of valu
Hanoi University of Technology - CHEMISTRY - 204
ities: DO NOT OPEN EXAties: NTIL YOU'PEN EXAM UNTIL YOU'RE TOLD! Useful quantiM U DO NOT O RE TOLD!Periodic Table with electronegativitiesKineticsKineticsZ = (,d2)*vrms*concentration ak(T) = Z.p f(T);f(T) = exp[-Ea /RT] ,k For A#B, Rate = -d[A]/dt
Hanoi University of Technology - CHEMISTRY - 204
Hanoi University of Technology - CHEMISTRY - 204
Hanoi University of Technology - CHEMISTRY - 204
in Joules.
Hanoi University of Technology - CHEMISTRY - 204
Hanoi University of Technology - CHEMISTRY - 204
Hanoi University of Technology - CHEMISTRY - 204
Hanoi University of Technology - CHEMISTRY - 204
Hanoi University of Technology - CHEMISTRY - 204
Hanoi University of Technology - CHEMISTRY - 442
Chem 442 Problem Set #1 DUE: Wednesday, Nov. 5, 20081) McQuarrie and Simon, Problem 1-82) a) McQ&amp;S, 1-19 b) The ionization potential for a Na atom is 5.15 eV. Should this be (or is this) the same as the work function? Why or why not? 3) 4) 5) 6) 7) 8) 9
Hanoi University of Technology - CHEMISTRY - 442
Chem 442 Problem Set #1 - Solutions DUE: Wednesday, Nov. 5, 20081) (McQ&amp;S 1-8)Using the Wien displacement law (eqn 1.4) or Planck's law (1.5):maxT = 2.90 103 m K2.90 103 m K max = = 2.90 1010 m 7 10 K Considering sig figs, we have max = 3 1010 m = 0.3
Hanoi University of Technology - CHEMISTRY - 442
Chem 442 Homework Set #2 DUE: Thursday, November 6, 2008 1) 2) 3) a) b) McQ&amp;S, 3-3 McQ&amp;S, 3-6 McQ&amp;S, 3-28. In addition, please explain the following points: Why is n = 0 a valid (i.e. non-trivial) solution? For n 0, En = E-n (i.e. n() and -n() have the sa
Hanoi University of Technology - CHEMISTRY - 442
Chem 442 Homework Set #2 - Solutions DUE: Thursday, Nov. 6. 20081) The eigenvalue equation is Af ( x ) = cf ( x ) where c is a constant.(McQ&amp;S 3-3)2 ( x ) = d cos x = 2 cos x = 2 f ( x ) ; eigenvalue = 2 a) Af dx 2 d b) Af ( x ) = eit = i eit = i f (
Hanoi University of Technology - CHEMISTRY - 442
Chem 442 Homework Set #3 DUE: Friday, November 7, 20081) a) McQ&amp;S, 3-26 b) Assume there is an electron in this box where a=5.00. Calculate the frequency of a photon emitted if the electron makes a transition from the first excited state to the ground sta
Hanoi University of Technology - CHEMISTRY - 442
Chem 442 Homework Set #3 - Solutions DUE: Friday, November 7, 20081) a) McQ&amp;S, 3-26The energy levels for the particle in the 3-D box are: Enx ny nz Enx ny nz Enx ny nz2 nz 2 h 2 nx 2 n y = + + 8m a 2 b 2 c 2 plug in a=b=1.5c2 nz 2 h 2 nx 2 n y = + +
Hanoi University of Technology - CHEMISTRY - 442
Chem 442 Homework Set #4 DUE: Saturday, November 8, 20081) In lecture 9, I introduced two new states for the particle on a ring: n+ =a)1cos ( n ) and n =1sin ( n )b) c) d) 2) a) b) c) 3) 4) 5)Prove statements A and B on slide 5 of lecture nine. T
Hanoi University of Technology - CHEMISTRY - 442
Chem 442B Homework Set #4 - Solutions DUE: Saturday, Nov. 8, 20081)a)2 d2 1 d n cos ( n ) = sin ( n ) 2 I d 2 2 I d 22 n1 cos ( n ) = En n + = 2I 2 2 H n+ = H n = 2 d2 1 dn sin ( n ) = cos ( n ) 2 I d 2 2 I d 22 n1 sin ( n ) = En n = 2I b)20 n +
Hanoi University of Technology - CHEMISTRY - 442
Chem 442B Homework Set #5 DUE: Tuesday, November 11, 20081) Determine the total probability that a harmonic oscillator in the first excited state is in the classically forbidden region. Hints: In this case xm 1/ . First figure out xm in terms of . Set up
Hanoi University of Technology - CHEMISTRY - 442
Chem 442B Homework Set #5 - Solutions DUE: Tuesday, November 11, 20081) 4 6 2 x2 / 2 1 ( x ) = (pg 170 McQ&amp;S) xe xm is the value of x where the potential energy = the total energy 1 E1 = 1 + 2 1 1 V ( x ) = kx 2 = m 2 x 2 2 2 3 1 = m 2 xm 2 2 2 m 3 3 xm
Hanoi University of Technology - CHEMISTRY - 442
Chem 442 Homework Set #6 DUE: Wednesday, November 12, 20081) 2) 3) McQ&amp;S 6-46 McQ&amp;S 6-47 In this problem and the next, we will find the approximate solutions for the quartic oscillator using the variational method. The Hamiltonian for the quartic 2 d2 =
Hanoi University of Technology - CHEMISTRY - 442
Chem 442 Homework Set #6 DUE: Wednesday November 12, 20081) McQ&amp;S 6-46The magnitude of the spiltting is B Bz m. B = 9.2740154 1024 J T 1 (Front cover of book - its denoted as B )So, the magnitude of the splitting is B Bz m = ( 9.2740154 10 24 J T 1 )
Hanoi University of Technology - CHEMISTRY - 442
Chem 442 Homework Set #7 DUE: Thursday, November 13, 20081) 2) 3) 4)a) McQ&amp;S 7-20 McQ&amp;S 7-22 McQ&amp;S 7-23 Using = c1 f1 + c2 f 2 where f1 = x 2 ( L x ) and f 2 = x ( L x ) as a trial function, apply the variational treatment to calculate an upper bound to
Hanoi University of Technology - CHEMISTRY - 442
Chem 442 Homework Set #7 DUE: Thursday, November 13, 20081) McQ&amp;S 7-20 2 d2 k 2 b4 0 1 a) H ( ) = x + x , H ( ) = x3 + 2 2m dx 2 6 24 ( 0) = Harmonic oscillator wavefunctions.1 E( 0) = n + 2 2 d2 ( 0) = , H (1) = b b) H 2 2m dxa &lt; x &lt; a 2 ( 0) =E( 0
Hanoi University of Technology - CHEMISTRY - 442
Chem 442 Homework Set #8 DUE: Friday, November 14, 20081) 2) 3) McQ&amp;S, 8-22 McQ&amp;S, 8-32 McQ&amp;S, 8-47. Instead of giving a suggestion for the trend, use the following Hamiltonian to determine, AS.O., the spin-orbit coupling constant for F, Cl, Br, and I. (