Materials Genome Assessment

Size: px
Start display at page:

Download "Materials Genome Assessment"

Transcription

1 Materials Genome Assessment Lecture 12 : Quantum Mechanics Theory: Differential equations with boundary conditions Schrodinger s cat Particle in a Box Programming: Modification of the Pendulum program Prof. Cedric Weber

2 Examples (just to give an idea..) * Energy materials : solar cells? * Thermo- electric materials? (fridge, cars, ) * Quantum dot? For quantum computing? * Graphene * Carbon nanotubes * Superconductors * Material for energy storage batteries? * Materials for conversion of methane liquid/gas (amonia) 2

3 What did you learn last time? 1. Using functions to solve differential equations ý 2. Reading an initial condition from the keyboard ý 3. Plotting the solution of a differential equation ý 4. Modifying a differential equation to introduce friction ý 3

4 4

5 Today s experiment! * [ do not repeat this experiment ] 5

6 Schrodinger s equation * Erwin Schrödinger, , born in Vienna * Developed the wave equation of quantum mechanics * Idea: every particle (electron, proton..) can be described by a function * This particle has a probability P(x) to be observed at a point x of space, this probability is given by the function: * Condition: the probability to observer Z the particle somewhere Z (anywhere) has to be P=1 : P (x)dx = (x) P (x) = (x) 2 (x) 2 dx =1 6

7 Differential equation * How can we know this function? To make the connection with the last lecture, we simply change the notation, let s call this function y(x) * Answer: the function is the solution of the Schrodinger equation (x)! y(x) d 2 y(x) dx 2 = 2m(V (x) E) ~ 2 y(x) * m : mass of the particle * E : energy of the particle * x : the coordinate, the position in space of the particle * V(x) : a potential which affects the particle and defines the problem to solve. If the particle is a rolling ball, the potential V(x) would be the potential energy ~ * : Plank constant

8 Particle in a box Let s be more specific: * Let s describe the problem of a particle resting in a box * The box has only one dimension (to simply our problem) * The box has infinitely hard walls on each side * The particle is not able to enter into the wall, so the probability to find the particle in x=a and x=b is zero: y(a)=y(b)=0 x Wall V (x) =0 Wall V (x) =1 V (x) =1 a =0 b =5 x = a x = b

9 Shake the box? * Shake the box : give an energy E to the particle * Where is the particle? Sitting at the center of the box? * To answer this question, we need to find y(x) in the interval a<x<b * In this interval V(x)=0 d 2 y(x) dx 2 = 2mE ~ y(x) * With boundary conditions: (the ball cannot enter the walls) y(a) =0 y(b) =0 9

10 Shake the box? What is the difference * Shake the box : give an energy E to the particle * Where is the particle? Sitting at the center of the box? with the pendulum? * To answer this question, we need to find y(x) in the interval a<x<b * In this interval V(x)=0 (last lecture) d 2 y(x) dx 2 = 2mE ~ y(x) * With boundary conditions: (the ball cannot enter the walls) y(a) =0 y(b) =0 10

11 Simplified equation * For simplicity, we set the mass of the particle such that : * This is the equation that we have to solve: 2m ~ =1 d 2 y(x) dx 2 = Ey(x) y(a) =y(b) =0 * Reminder: Pendulum was a similar problem, but with initial condition. * Here, we need to impose y(a) =y(b)=0. We have a free parameter E. * Idea: can I start from y(a)=0, and find E such that y(b)=0? y(a) =0&E y(b) =0 11

12 ² Strategy: aim and shoot Solving differential equation with boundary conditions ² Solve the differential equation with initial condition y(a)=0 y(x = a) =0 ² and with an energy E, see what you obtain for y(b) y(x = b) =0 ² Obtain y(b) as a function of E, when y(b)=0 we find the right Energy E. ² Find which energies E satisfy the condition y(b)=0 (finding zeros of a function, check where the plot is crossing the horizontal axis) 12

13 Reminder : coupled first order equations ² We discussed in the last lecture that this equation can be decomposed in two coupled first order equations: d 2 y(x) ² Simple idea: let s define a new variable: ² We get the equations : ² We are trying to obtain : y(b=5)=0 Initial conditions dx 2 = Ey(x) y(a) =0 y 0 (a) =1 dy dx = z dz dx =... z(0) = 1 y(0) = 0 ² Plot what you obtain for y(b=5) for energies E ranging from 0 to 20 13

14 Energy quantization d 2 y(x) dx 2 = Ey(x) y(0) = y(5) = 0 Each time y(5)=0, we solved our problem! Yay! 14

15 Energy quantization d 2 y(x) dx 2 = Ey(x) y(0) = y(5) = 0 Each time y(5)=0, we solved our problem! Yay! But Wait. The energy of the particle only can take SOME particular values right? Indeed, this is what we call the quantification of the energy (hence quantum physics) 15 The particle can only take some quantized energies

16 Quantum wave- function y(x) * For each obtained energy E, we can also obtain the solution to the differential equation y(x), 0<x<5 * What do we get? * For each allowed energy: n=1 n=2 * First energy (n=1) * Second energy (n=2) * Third energy (n=3) n=3 16

17 Where is my particle? * Probability P(x)=y(x) 2 * The particle with first energy has two maxima n=1 * The particle with second energy has three maxima * The particle with third energy has four maxima * When the particle has a high energy it is everywhere! n=3 n=2 17

18 18

19 Finding the energies 1. We use the code written for the pendulum (last lecture) 2. The differential equation needs to be solved for many different energies, we want to scan energies from 0 to 20 19

20 PROGRAM program quantumbox implicit none integer,parameter :: N= integer :: j,i, ie real(8) :: h,a,b,energy,x(0:n),y(0:n),z(0:n) a = 0.0 b = 5.0 h = (b - a) / dble(n) do ie=1,1000 energy = ie / 1000 * 20. x(0)=a; y(0)=0; z(0)=1. do j = 1, N y( j ) = y( j-1 ) + h * ( z( j-1 ) ) z( j ) = z( j-1 ) + h * ( -energy * y(j-1) ) x( j ) = j*h enddo write(100,*) energy, [FILL IN] end do end program 20 Solve the equ. diff. for every energy

21 Plotting the quantum functions * We modify bits in the previous code, now additionally we want to detect each time y(x) satisfies y(x=5)=0 * We add a counter counte, which is incremented each time we obtain : y(x=5)=0 * how can I detect if y(x=5) is equal to zero? 21

22 program quantumbox use library implicit none real(8) :: right_boundary( 0:1000 ) right_boundary=0.0 counte = 0 do ie = 1, 1000 energy = ie/1000*20.. counte counts how many times we obtain y(x=5)=0 as the energy is increased. It will hence count the energy levels for the wave- function x(0)=a; y(0)=0; z(0)=1. do j = 1, N y( j ) = y( j-1 ) + h * ( z( j-1 ) ) z( j ) = z( j-1 ) + h * ( -energy * y(j-1) ) x( j ) = j * h enddo y(n) is the last point obtained for the solution of the equation, so y(n) is y(x=5) right_boundary(i) = y(n) if( right_boundary(i)*right_boundary(i-1) < 0 )then [Fill in] Then the end if end do end program Here we want to check if y(x=5) is equal to zero. When it is, we want to write into a new file the array y which contains the solution y(x) for this given energy E 22

23 Problems Problem 1 : Particle in a box Problem 2 : Infinite box Problem 3 : Particle tunneling through a barrier 23

24 Particle in a box / Energy barrier Wall V (x) =0 V (x) =5 Wall V (x) =0 Wall V (x) =1 V (x) =1 a =0 b =5 x = a x = b x 24

Practice / Lecture 8 : Differential equations Quantum Particle in a box

Practice / Lecture 8 : Differential equations Quantum Particle in a box Problem 1 : Quantum Particle in a box In this problem we would like to modify the code of the pendulum, written in the last session, to solve the Schrodinger equation. Problem 1.a : d 2 y(x) dx 2 = 2m(V

More information

Introduction to computational modelling

Introduction to computational modelling Introduction to computational modelling Lecture 6 : Differential equations Physics: Pendulum Algorithm: Taylor s method Programming: Code explained Instructor : Cedric Weber Course : 4CCP1000 Schedule

More information

It illustrates quantum mechanical principals. It illustrates the use of differential eqns. & boundary conditions to solve for ψ

It illustrates quantum mechanical principals. It illustrates the use of differential eqns. & boundary conditions to solve for ψ MODEL SYSTEM: PARTICLE IN A BOX Important because: It illustrates quantum mechanical principals It illustrates the use of differential eqns. & boundary conditions to solve for ψ It shows how discrete energy

More information

Computational modeling

Computational modeling Computational modeling Lecture 4 : Central Limit Theorem Theory: Normal distribution Programming: Arrays Instructor : Cedric Weber Course : 4CCP1000 Schedule Class/Week Chapter Topic Milestones 1 Monte

More information

Quantum Theory. Thornton and Rex, Ch. 6

Quantum Theory. Thornton and Rex, Ch. 6 Quantum Theory Thornton and Rex, Ch. 6 Matter can behave like waves. 1) What is the wave equation? 2) How do we interpret the wave function y(x,t)? Light Waves Plane wave: y(x,t) = A cos(kx-wt) wave (w,k)

More information

Computational modeling

Computational modeling Computational modeling Lecture 1 : Linear algebra - Matrix operations Examination next week: How to get prepared Theory and programming: Matrix operations Instructor : Cedric Weber Course : 4CCP1 Schedule

More information

Basics Quantum Mechanics Prof. Ajoy Ghatak Department of physics Indian Institute of Technology, Delhi

Basics Quantum Mechanics Prof. Ajoy Ghatak Department of physics Indian Institute of Technology, Delhi Basics Quantum Mechanics Prof. Ajoy Ghatak Department of physics Indian Institute of Technology, Delhi Module No. # 03 Linear Harmonic Oscillator-1 Lecture No. # 04 Linear Harmonic Oscillator (Contd.)

More information

* = 2 = Probability distribution function. probability of finding a particle near a given point x,y,z at a time t

* = 2 = Probability distribution function. probability of finding a particle near a given point x,y,z at a time t Quantum Mechanics Wave functions and the Schrodinger equation Particles behave like waves, so they can be described with a wave function (x,y,z,t) A stationary state has a definite energy, and can be written

More information

Opinions on quantum mechanics. CHAPTER 6 Quantum Mechanics II. 6.1: The Schrödinger Wave Equation. Normalization and Probability

Opinions on quantum mechanics. CHAPTER 6 Quantum Mechanics II. 6.1: The Schrödinger Wave Equation. Normalization and Probability CHAPTER 6 Quantum Mechanics II 6.1 The Schrödinger Wave Equation 6. Expectation Values 6.3 Infinite Square-Well Potential 6.4 Finite Square-Well Potential 6.5 Three-Dimensional Infinite- 6.6 Simple Harmonic

More information

REVIEW: The Matching Method Algorithm

REVIEW: The Matching Method Algorithm Lecture 26: Numerov Algorithm for Solving the Time-Independent Schrödinger Equation 1 REVIEW: The Matching Method Algorithm Need for a more general method The shooting method for solving the time-independent

More information

Physics 1C. Lecture 28D

Physics 1C. Lecture 28D Physics 1C Lecture 28D "I ask you to look both ways. For the road to a knowledge of the stars leads through the atom; and important knowledge of the atom has been reached through the stars." --Sir Arthur

More information

CSC165. Larry Zhang, October 7, 2014

CSC165. Larry Zhang, October 7, 2014 CSC165 Larry Zhang, October 7, 2014 If you did bad, then it is not bad. Proof: assume you left all questions blank # that s pretty bad! then you get 20% # rule on test paper assume class average is 70%

More information

Modern physics. 4. Barriers and wells. Lectures in Physics, summer

Modern physics. 4. Barriers and wells. Lectures in Physics, summer Modern physics 4. Barriers and wells Lectures in Physics, summer 016 1 Outline 4.1. Particle motion in the presence of a potential barrier 4.. Wave functions in the presence of a potential barrier 4.3.

More information

Review session Midterm 1

Review session Midterm 1 AS.110.109: Calculus II (Eng) Review session Midterm 1 Yi Wang, Johns Hopkins University Fall 2018 7.1: Integration by parts Basic integration method: u-sub, integration table Integration By Parts formula

More information

Quantum Mechanics. The Schrödinger equation. Erwin Schrödinger

Quantum Mechanics. The Schrödinger equation. Erwin Schrödinger Quantum Mechanics The Schrödinger equation Erwin Schrödinger The Nobel Prize in Physics 1933 "for the discovery of new productive forms of atomic theory" The Schrödinger Equation in One Dimension Time-Independent

More information

Lecture 10: The Schrödinger Equation Lecture 10, p 1

Lecture 10: The Schrödinger Equation Lecture 10, p 1 Lecture 10: The Schrödinger Equation Lecture 10, p 1 Overview Probability distributions Schrödinger s Equation Particle in a Bo Matter waves in an infinite square well Quantized energy levels y() U= n=1

More information

Announcement Second HW will be due on Monday Sept 19! The text book is on reserve in SERC reading room

Announcement Second HW will be due on Monday Sept 19! The text book is on reserve in SERC reading room Quantum Mechanics and Atomic Physics Lecture 4: Schodinger s Equation: Part II http://www.physics.rutgers.edu/ugrad/361 Prof. Sean Oh Announcement Second HW will be due on Monday Sept 19! The text book

More information

Final exam. Introduction to Nanotechnology. Name: Student number:

Final exam. Introduction to Nanotechnology. Name: Student number: 1 Final exam. Introduction to Nanotechnology Name: Student number: 1. (a) What is the definition for a cluster size-wise? (3%) (b) Calculate the energy separation near the Fermi surface of a metallic cluster

More information

Lecture 6. Four postulates of quantum mechanics. The eigenvalue equation. Momentum and energy operators. Dirac delta function. Expectation values

Lecture 6. Four postulates of quantum mechanics. The eigenvalue equation. Momentum and energy operators. Dirac delta function. Expectation values Lecture 6 Four postulates of quantum mechanics The eigenvalue equation Momentum and energy operators Dirac delta function Expectation values Objectives Learn about eigenvalue equations and operators. Learn

More information

Lecture 2: simple QM problems

Lecture 2: simple QM problems Reminder: http://www.star.le.ac.uk/nrt3/qm/ Lecture : simple QM problems Quantum mechanics describes physical particles as waves of probability. We shall see how this works in some simple applications,

More information

David J. Starling Penn State Hazleton PHYS 214

David J. Starling Penn State Hazleton PHYS 214 Not all chemicals are bad. Without chemicals such as hydrogen and oxygen, for example, there would be no way to make water, a vital ingredient in beer. -Dave Barry David J. Starling Penn State Hazleton

More information

Particle in a Box and Tunneling. A Particle in a Box Boundary Conditions The Schrodinger Equation Tunneling Through a Potential Barrier Homework

Particle in a Box and Tunneling. A Particle in a Box Boundary Conditions The Schrodinger Equation Tunneling Through a Potential Barrier Homework Particle in a Box and Tunneling A Particle in a Box Boundary Conditions The Schrodinger Equation Tunneling Through a Potential Barrier Homework A Particle in a Box Consider a particle of mass m and velocity

More information

Quantum Theory. Thornton and Rex, Ch. 6

Quantum Theory. Thornton and Rex, Ch. 6 Quantum Theory Thornton and Rex, Ch. 6 Matter can behave like waves. 1) What is the wave equation? 2) How do we interpret the wave function y(x,t)? Light Waves Plane wave: y(x,t) = A cos(kx-wt) wave (w,k)

More information

EECS 117 Lecture 7: Electrostatics Review

EECS 117 Lecture 7: Electrostatics Review EECS 117 Lecture 7: Electrostatics Review Prof. Niknejad University of California, Berkeley University of California, Berkeley EECS 117 Lecture 7 p. 1/19 Existence of Charge Charge, like mass, is an intrinsic

More information

General Physical Chemistry II

General Physical Chemistry II General Physical Chemistry II Lecture 3 Aleksey Kocherzhenko September 2, 2014" Last time " The time-independent Schrödinger equation" Erwin Schrödinger " ~ 2 2m d 2 (x) dx 2 The wavefunction:" (x) The

More information

Lecture IX. Definition 1 A non-singular Sturm 1 -Liouville 2 problem consists of a second order linear differential equation of the form.

Lecture IX. Definition 1 A non-singular Sturm 1 -Liouville 2 problem consists of a second order linear differential equation of the form. Lecture IX Abstract When solving PDEs it is often necessary to represent the solution in terms of a series of orthogonal functions. One way to obtain an orthogonal family of functions is by solving a particular

More information

CHAPTER 6 Quantum Mechanics II

CHAPTER 6 Quantum Mechanics II CHAPTER 6 Quantum Mechanics II 6.1 The Schrödinger Wave Equation 6.2 Expectation Values 6.3 Infinite Square-Well Potential 6.4 Finite Square-Well Potential 6.5 Three-Dimensional Infinite-Potential Well

More information

Final Exam. Tuesday, May 8, Starting at 8:30 a.m., Hoyt Hall.

Final Exam. Tuesday, May 8, Starting at 8:30 a.m., Hoyt Hall. Final Exam Tuesday, May 8, 2012 Starting at 8:30 a.m., Hoyt Hall. Summary of Chapter 38 In Quantum Mechanics particles are represented by wave functions Ψ. The absolute square of the wave function Ψ 2

More information

MA4001 Engineering Mathematics 1 Lecture 15 Mean Value Theorem Increasing and Decreasing Functions Higher Order Derivatives Implicit Differentiation

MA4001 Engineering Mathematics 1 Lecture 15 Mean Value Theorem Increasing and Decreasing Functions Higher Order Derivatives Implicit Differentiation MA4001 Engineering Mathematics 1 Lecture 15 Mean Value Theorem Increasing and Decreasing Functions Higher Order Derivatives Implicit Differentiation Dr. Sarah Mitchell Autumn 2014 Rolle s Theorem Theorem

More information

CHAPTER 6 Quantum Mechanics II

CHAPTER 6 Quantum Mechanics II CHAPTER 6 Quantum Mechanics II 6.1 The Schrödinger Wave Equation 6.2 Expectation Values 6.3 Infinite Square-Well Potential 6.4 Finite Square-Well Potential 6.5 Three-Dimensional Infinite-Potential Well

More information

Sample Quantum Chemistry Exam 1 Solutions

Sample Quantum Chemistry Exam 1 Solutions Chemistry 46 Fall 217 Dr Jean M Standard September 27, 217 Name SAMPE EXAM Sample Quantum Chemistry Exam 1 Solutions 1 (24 points Answer the following questions by selecting the correct answer from the

More information

The Harmonic Oscillator: Zero Point Energy and Tunneling

The Harmonic Oscillator: Zero Point Energy and Tunneling The Harmonic Oscillator: Zero Point Energy and Tunneling Lecture Objectives: 1. To introduce simple harmonic oscillator model using elementary classical mechanics.. To write down the Schrodinger equation

More information

Physics-I. Dr. Anurag Srivastava. Web address: Visit me: Room-110, Block-E, IIITM Campus

Physics-I. Dr. Anurag Srivastava. Web address:    Visit me: Room-110, Block-E, IIITM Campus Physics-I Dr. Anurag Srivastava Web address: http://tiiciiitm.com/profanurag Email: profanurag@gmail.com Visit me: Room-110, Block-E, IIITM Campus Syllabus Electrodynamics: Maxwell s equations: differential

More information

The Particle in a Box

The Particle in a Box Page 324 Lecture 17: Relation of Particle in a Box Eigenstates to Position and Momentum Eigenstates General Considerations on Bound States and Quantization Continuity Equation for Probability Date Given:

More information

Old Dominion University Momentum and Collisions

Old Dominion University Momentum and Collisions m1 v1,b m2 v2,b = 0 before University Physics 226N/231N Old Dominion University Momentum and Collisions Dr. Todd Satogata (ODU/Jefferson Lab) satogata@jlab.org http://www.toddsatogata.net/2012-odu Friday,

More information

Engineering Mechanics Prof. U. S. Dixit Department of Mechanical Engineering Indian Institute of Technology, Guwahati Kinematics

Engineering Mechanics Prof. U. S. Dixit Department of Mechanical Engineering Indian Institute of Technology, Guwahati Kinematics Engineering Mechanics Prof. U. S. Dixit Department of Mechanical Engineering Indian Institute of Technology, Guwahati Kinematics Module 10 - Lecture 24 Kinematics of a particle moving on a curve Today,

More information

Hydrogen atom energies. Friday Honors lecture. Quantum Particle in a box. Classical vs Quantum. Quantum version

Hydrogen atom energies. Friday Honors lecture. Quantum Particle in a box. Classical vs Quantum. Quantum version Friday onors lecture Prof. Clint Sprott takes us on a tour of fractals. ydrogen atom energies Quantized energy levels: Each corresponds to different Orbit radius Velocity Particle wavefunction Energy Each

More information

Lecture 6.1 Work and Energy During previous lectures we have considered many examples, which can be solved using Newtonian approach, in particular,

Lecture 6.1 Work and Energy During previous lectures we have considered many examples, which can be solved using Newtonian approach, in particular, Lecture 6. Work and Energy During previous lectures we have considered many examples, which can be solved using Newtonian approach, in particular, Newton's second law. However, this is not always the most

More information

(Refer Slide Time: 1:20) (Refer Slide Time: 1:24 min)

(Refer Slide Time: 1:20) (Refer Slide Time: 1:24 min) Engineering Chemistry - 1 Prof. K. Mangala Sunder Department of Chemistry Indian Institute of Technology, Madras Lecture - 5 Module 1: Atoms and Molecules Harmonic Oscillator (Continued) (Refer Slide Time:

More information

Semiconductor Physics and Devices

Semiconductor Physics and Devices Introduction to Quantum Mechanics In order to understand the current-voltage characteristics, we need some knowledge of electron behavior in semiconductor when the electron is subjected to various potential

More information

Essential Ordinary Differential Equations

Essential Ordinary Differential Equations MODULE 1: MATHEMATICAL PRELIMINARIES 10 Lecture 2 Essential Ordinary Differential Equations In this lecture, we recall some methods of solving first-order IVP in ODE (separable and linear) and homogeneous

More information

Formalism of Quantum Mechanics

Formalism of Quantum Mechanics The theory of quantum mechanics is formulated by defining a set of rules or postulates. These postulates cannot be derived from the laws of classical physics. The rules define the following: 1. How to

More information

Designing Information Devices and Systems I Fall 2018 Lecture Notes Note 2

Designing Information Devices and Systems I Fall 2018 Lecture Notes Note 2 EECS 6A Designing Information Devices and Systems I Fall 08 Lecture Notes Note Vectors and Matrices In the previous note, we introduced vectors and matrices as a way of writing systems of linear equations

More information

Ordinary Differential Equations (ODEs)

Ordinary Differential Equations (ODEs) Ordinary Differential Equations (ODEs) 1 Computer Simulations Why is computation becoming so important in physics? One reason is that most of our analytical tools such as differential calculus are best

More information

Notes for Class Meeting 19: Uncertainty

Notes for Class Meeting 19: Uncertainty Notes for Class Meeting 19: Uncertainty Uncertainty in Momentum and Position In 1926, Werner Heisenberg formulated the uncertainty principle: It is impossible to determine both the momentum and position

More information

Quantum Physics III (8.06) Spring 2007 FINAL EXAMINATION Monday May 21, 9:00 am You have 3 hours.

Quantum Physics III (8.06) Spring 2007 FINAL EXAMINATION Monday May 21, 9:00 am You have 3 hours. Quantum Physics III (8.06) Spring 2007 FINAL EXAMINATION Monday May 21, 9:00 am You have 3 hours. There are 10 problems, totalling 180 points. Do all problems. Answer all problems in the white books provided.

More information

Designing Information Devices and Systems I Spring 2019 Lecture Notes Note 2

Designing Information Devices and Systems I Spring 2019 Lecture Notes Note 2 EECS 6A Designing Information Devices and Systems I Spring 9 Lecture Notes Note Vectors and Matrices In the previous note, we introduced vectors and matrices as a way of writing systems of linear equations

More information

From Last time. Exam 3 results. Probability. The wavefunction. Example wavefunction. Discrete vs continuous. De Broglie wavelength

From Last time. Exam 3 results. Probability. The wavefunction. Example wavefunction. Discrete vs continuous. De Broglie wavelength From ast time Eam 3 results De Broglie wavelength Uncertainty principle Eam average ~ 70% Scores posted on learn@uw D C BC B AB A Wavefunction of a particle Course evaluations: Tuesday, Dec. 9 Tue. Dec.

More information

Quantum Mechanics: Particles in Potentials

Quantum Mechanics: Particles in Potentials Quantum Mechanics: Particles in Potentials 3 april 2010 I. Applications of the Postulates of Quantum Mechanics Now that some of the machinery of quantum mechanics has been assembled, one can begin to apply

More information

L11.P1 Lecture 11. Quantum statistical mechanics: summary

L11.P1 Lecture 11. Quantum statistical mechanics: summary Lecture 11 Page 1 L11.P1 Lecture 11 Quantum statistical mechanics: summary At absolute zero temperature, a physical system occupies the lowest possible energy configuration. When the temperature increases,

More information

If electrons moved in simple orbits, p and x could be determined, but this violates the Heisenberg Uncertainty Principle.

If electrons moved in simple orbits, p and x could be determined, but this violates the Heisenberg Uncertainty Principle. CHEM 2060 Lecture 18: Particle in a Box L18-1 Atomic Orbitals If electrons moved in simple orbits, p and x could be determined, but this violates the Heisenberg Uncertainty Principle. We can only talk

More information

Semiconductor Physics and Devices

Semiconductor Physics and Devices EE321 Fall 2015 September 28, 2015 Semiconductor Physics and Devices Weiwen Zou ( 邹卫文 ) Ph.D., Associate Prof. State Key Lab of advanced optical communication systems and networks, Dept. of Electronic

More information

Lecture 5. Potentials

Lecture 5. Potentials Lecture 5 Potentials 51 52 LECTURE 5. POTENTIALS 5.1 Potentials In this lecture we will solve Schrödinger s equation for some simple one-dimensional potentials, and discuss the physical interpretation

More information

CHAPTER 36. 1* True or false: Boundary conditions on the wave function lead to energy quantization. True

CHAPTER 36. 1* True or false: Boundary conditions on the wave function lead to energy quantization. True CHAPTER 36 * True or false: Boundary conditions on the we function lead to energy quantization. True Sketch (a) the we function and (b) the probability distribution for the n 4 state for the finite squarewell

More information

Lecture 10. (2) Functions of two variables. Partial derivatives. Dan Nichols February 27, 2018

Lecture 10. (2) Functions of two variables. Partial derivatives. Dan Nichols February 27, 2018 Lecture 10 Partial derivatives Dan Nichols nichols@math.umass.edu MATH 233, Spring 2018 University of Massachusetts February 27, 2018 Last time: functions of two variables f(x, y) x and y are the independent

More information

three-dimensional quantum problems

three-dimensional quantum problems three-dimensional quantum problems The one-dimensional problems we ve been examining can can carry us a long way some of these are directly applicable to many nanoelectronics problems but there are some

More information

CHAPTER 6 Quantum Mechanics II

CHAPTER 6 Quantum Mechanics II CHAPTER 6 Quantum Mechanics II 6.1 6.2 6.3 6.4 6.5 6.6 6.7 The Schrödinger Wave Equation Expectation Values Infinite Square-Well Potential Finite Square-Well Potential Three-Dimensional Infinite-Potential

More information

atoms and light. Chapter Goal: To understand the structure and properties of atoms.

atoms and light. Chapter Goal: To understand the structure and properties of atoms. Quantum mechanics provides us with an understanding of atomic structure and atomic properties. Lasers are one of the most important applications of the quantummechanical properties of atoms and light.

More information

The potential is minimum at the positive ion sites and maximum between the two ions.

The potential is minimum at the positive ion sites and maximum between the two ions. 1. Bloch theorem: - A crystalline solid consists of a lattice, which is composed of a large number of ion cores at regular intervals, and the conduction electrons that can move freely through out the lattice.

More information

Notes on wavefunctions IV: the Schrödinger equation in a potential and energy eigenstates.

Notes on wavefunctions IV: the Schrödinger equation in a potential and energy eigenstates. Notes on wavefunctions IV: the Schrödinger equation in a potential and energy eigenstates. We have now seen that the wavefunction for a free electron changes with time according to the Schrödinger Equation

More information

The Schrodinger Wave Equation (Engel 2.4) In QM, the behavior of a particle is described by its wave function Ψ(x,t) which we get by solving:

The Schrodinger Wave Equation (Engel 2.4) In QM, the behavior of a particle is described by its wave function Ψ(x,t) which we get by solving: When do we use Quantum Mechanics? (Engel 2.1) Basically, when λ is close in magnitude to the dimensions of the problem, and to the degree that the system has a discrete energy spectrum The Schrodinger

More information

Multiplication of Polynomials

Multiplication of Polynomials Summary 391 Chapter 5 SUMMARY Section 5.1 A polynomial in x is defined by a finite sum of terms of the form ax n, where a is a real number and n is a whole number. a is the coefficient of the term. n is

More information

31.1.1Partial derivatives

31.1.1Partial derivatives Module 11 : Partial derivatives, Chain rules, Implicit differentiation, Gradient, Directional derivatives Lecture 31 : Partial derivatives [Section 31.1] Objectives In this section you will learn the following

More information

University Physics 226N/231N Old Dominion University. Exam Review, Friction and Work

University Physics 226N/231N Old Dominion University. Exam Review, Friction and Work University Physics 226N/231N Old Dominion University Exam Review, Friction and Work Dr. Todd Satogata (ODU/Jefferson Lab) satogata@jlab.org http://www.toddsatogata.net/2016-odu Wednesday, September 28,

More information

2.2 Average vs. Instantaneous Description

2.2 Average vs. Instantaneous Description 2 KINEMATICS 2.2 Average vs. Instantaneous Description Name: 2.2 Average vs. Instantaneous Description 2.2.1 Average vs. Instantaneous Velocity In the previous activity, you figured out that you can calculate

More information

Goals for This Lecture:

Goals for This Lecture: Goals for This Lecture: Learn how to integrate dynamical equations of motion Understand how these equations form a coupled set of first-order ordinary differential equations (ODEs) Develop a simple numerical

More information

Chapter 4 (Lecture 6-7) Schrodinger equation for some simple systems Table: List of various one dimensional potentials System Physical correspondence

Chapter 4 (Lecture 6-7) Schrodinger equation for some simple systems Table: List of various one dimensional potentials System Physical correspondence V, E, Chapter (Lecture 6-7) Schrodinger equation for some simple systems Table: List of various one dimensional potentials System Physical correspondence Potential Total Energies and Probability density

More information

Solving the Schrodinger Equation

Solving the Schrodinger Equation Time-dependent Schrödinger Equation: i!!!2 " (x,t) =!t 2m! 2 " (x,t) + U(x)" (x,t) 2!x Stationary Solutions:! (x,t) = "(x)(t)!(t) = e "it, = E! Time-independent Schrödinger equation:!!2 2m d 2 "(x) + U(x)"(x)

More information

Work and kinetic energy. If a net force is applied on an object, the object may

Work and kinetic energy. If a net force is applied on an object, the object may Work and kinetic energy If a net force is applied on an object, the object may CHAPTER 6 WORK AND ENERGY experience a change in position, i.e., a displacement. When a net force is applied over a distance,

More information

Basic Quantum Mechanics Prof. Ajoy Ghatak Department of Physics Indian Institute of Technology, Delhi

Basic Quantum Mechanics Prof. Ajoy Ghatak Department of Physics Indian Institute of Technology, Delhi Basic Quantum Mechanics Prof. Ajoy Ghatak Department of Physics Indian Institute of Technology, Delhi Module No. # 02 Simple Solutions of the 1 Dimensional Schrodinger Equation Lecture No. # 02 Physical

More information

Definition: Electricity at rest (stationary)

Definition: Electricity at rest (stationary) Electrostatics Definition: Electricity at rest (stationary) Static means to stand and is used in Mechanical Engineering to study forces on bridges and other structures. Statue, stasis, stationary, ecstatic,

More information

Example one-dimensional quantum systems Notes on Quantum Mechanics

Example one-dimensional quantum systems Notes on Quantum Mechanics Eample one-dimensional quantum sstems Notes on Quantum Mechanics http://quantum.bu.edu/notes/quantummechanics/eampledquantumsstems.pdf Last updated Wednesda, October 0, 004 6:03:47-05:00 Copright 004 Dan

More information

Continuous random variables

Continuous random variables Continuous random variables CE 311S What was the difference between discrete and continuous random variables? The possible outcomes of a discrete random variable (finite or infinite) can be listed out;

More information

LECTURE 6 QUANTUM PHYSICS II. Instructor: Shih-Chieh Hsu

LECTURE 6 QUANTUM PHYSICS II. Instructor: Shih-Chieh Hsu LECTURE 6 QUANTUM PHYSICS II Instructor: Shih-Chieh Hsu Development of Quantum Mechanics 2 In 1862, Kirchhoff coined black body radiation or known as cavity radiation The experiments raised the question

More information

Lecture 13: Barrier Penetration and Tunneling

Lecture 13: Barrier Penetration and Tunneling Lecture 13: Barrier Penetration and Tunneling nucleus x U(x) U(x) U 0 E A B C B A 0 L x 0 x Lecture 13, p 1 Today Tunneling of quantum particles Scanning Tunneling Microscope (STM) Nuclear Decay Solar

More information

STAT 516: Basic Probability and its Applications

STAT 516: Basic Probability and its Applications Lecture 4: Random variables Prof. Michael September 15, 2015 What is a random variable? Often, it is hard and/or impossible to enumerate the entire sample space For a coin flip experiment, the sample space

More information

CURIOSITY KILLED THE CAT

CURIOSITY KILLED THE CAT 3.012 Fund of Mat Sci: Bonding Lecture 4 CURIOSITY KILLED THE CAT Last Time Expectation values of the energy in an infinite well (particle-in-a-box) Absorption lines (linear conjugated molecules) Particles

More information

Total Angular Momentum for Hydrogen

Total Angular Momentum for Hydrogen Physics 4 Lecture 7 Total Angular Momentum for Hydrogen Lecture 7 Physics 4 Quantum Mechanics I Friday, April th, 008 We have the Hydrogen Hamiltonian for central potential φ(r), we can write: H r = p

More information

Quantum Mechanics II

Quantum Mechanics II Quantum Mechanics II Prof. Boris Altshuler April, 20 Lecture 2. Scattering Theory Reviewed Remember what we have covered so far for scattering theory. We separated the Hamiltonian similar to the way in

More information

Chemistry 125: Instructions for Erwin Meets Goldilocks

Chemistry 125: Instructions for Erwin Meets Goldilocks Chemistry 125: Instructions for Erwin Meets Goldilocks [Note the 5 problems for Monday s problem set are found at the end of this document. Many of the details on operating the program relate to an earlier

More information

Electric Potential. David J. Starling Penn State Hazleton PHYS 212. Electricity is really just organized lightning. - George Carlin.

Electric Potential. David J. Starling Penn State Hazleton PHYS 212. Electricity is really just organized lightning. - George Carlin. Electricity is really just organized lightning. - George Carlin David J. Starling Penn State Hazleton PHYS 212 Since the electric force is so similar to gravity, might it be conservative? Yes! If we move

More information

Differential Equations Review

Differential Equations Review P. R. Nelson diff eq prn.tex Winter 2010 p. 1/20 Differential Equations Review Phyllis R. Nelson prnelson@csupomona.edu Professor, Department of Electrical and Computer Engineering California State Polytechnic

More information

Module 2 : Convection. Lecture 12 : Derivation of conservation of energy

Module 2 : Convection. Lecture 12 : Derivation of conservation of energy Module 2 : Convection Lecture 12 : Derivation of conservation of energy Objectives In this class: Start the derivation of conservation of energy. Utilize earlier derived mass and momentum equations for

More information

Chem 3502/4502 Physical Chemistry II (Quantum Mechanics) 3 Credits Spring Semester 2006 Christopher J. Cramer. Lecture 9, February 8, 2006

Chem 3502/4502 Physical Chemistry II (Quantum Mechanics) 3 Credits Spring Semester 2006 Christopher J. Cramer. Lecture 9, February 8, 2006 Chem 3502/4502 Physical Chemistry II (Quantum Mechanics) 3 Credits Spring Semester 2006 Christopher J. Cramer Lecture 9, February 8, 2006 The Harmonic Oscillator Consider a diatomic molecule. Such a molecule

More information

through any three given points if and only if these points are not collinear.

through any three given points if and only if these points are not collinear. Discover Parabola Time required 45 minutes Teaching Goals: 1. Students verify that a unique parabola with the equation y = ax + bx+ c, a 0, exists through any three given points if and only if these points

More information

Afternoon Section. Physics 1210 Exam 2 November 8, ! v = d! r dt. a avg. = v2. ) T 2! w = m g! f s. = v at v 2 1.

Afternoon Section. Physics 1210 Exam 2 November 8, ! v = d! r dt. a avg. = v2. ) T 2! w = m g! f s. = v at v 2 1. Name Physics 1210 Exam 2 November 8, 2012 Afternoon Section Please write directly on the exam and attach other sheets of work if necessary. Calculators are allowed. No notes or books may be used. Multiple-choice

More information

Wave Phenomena Physics 15c

Wave Phenomena Physics 15c Wave Phenomena Physics 15c Lecture 4 Introduction to Quantum Mechanics (H&L Chapter 14) Administravia! This is our last lecture! No meeting during the Reading Period! Problem sets being graded! Will be

More information

Lecture 4 (19/10/2012)

Lecture 4 (19/10/2012) 4B5: Nanotechnology & Quantum Phenomena Michaelmas term 2012 Dr C Durkan cd229@eng.cam.ac.uk www.eng.cam.ac.uk/~cd229/ Lecture 4 (19/10/2012) Boundary-value problems in Quantum Mechanics - 2 Bound states

More information

Solution: Drawing Bound and Scattering State Wave Function Warm-up: (a) No. The energy E is greater than the potential energy in region (i).

Solution: Drawing Bound and Scattering State Wave Function Warm-up: (a) No. The energy E is greater than the potential energy in region (i). Solution: Drawing Bound and Scattering State Wave Function Warm-up: 1. 2. 3. 4. (a) No. The energy E is greater than the potential energy in region (i). (b) No. The energy E is greater than the potential

More information

Particle in a 3 Dimensional Box just extending our model from 1D to 3D

Particle in a 3 Dimensional Box just extending our model from 1D to 3D CHEM 2060 Lecture 20: Particle in a 3D Box; H atom L20-1 Particle in a 3 Dimensional Box just extending our model from 1D to 3D A 3D model is a step closer to reality than a 1D model. Let s increase the

More information

Electron in a Box. A wave packet in a square well (an electron in a box) changing with time.

Electron in a Box. A wave packet in a square well (an electron in a box) changing with time. Electron in a Box A wave packet in a square well (an electron in a box) changing with time. Last Time: Light Wave model: Interference pattern is in terms of wave intensity Photon model: Interference in

More information

Exp. 4. Quantum Chemical calculation: The potential energy curves and the orbitals of H2 +

Exp. 4. Quantum Chemical calculation: The potential energy curves and the orbitals of H2 + Exp. 4. Quantum Chemical calculation: The potential energy curves and the orbitals of H2 + 1. Objectives Quantum chemical solvers are used to obtain the energy and the orbitals of the simplest molecules

More information

Quantum Mechanics for Scientists and Engineers. David Miller

Quantum Mechanics for Scientists and Engineers. David Miller Quantum Mechanics for Scientists and Engineers David Miller The particle in a box The particle in a box Linearity and normalization Linearity and Schrödinger s equation We see that Schrödinger s equation

More information

) (d o f. For the previous layer in a neural network (just the rightmost layer if a single neuron), the required update equation is: 2.

) (d o f. For the previous layer in a neural network (just the rightmost layer if a single neuron), the required update equation is: 2. 1 Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science 6.034 Artificial Intelligence, Fall 2011 Recitation 8, November 3 Corrected Version & (most) solutions

More information

Lecture Notes for PHY 405 Classical Mechanics

Lecture Notes for PHY 405 Classical Mechanics Lecture Notes for PHY 405 Classical Mechanics From Thorton & Marion s Classical Mechanics Prepared by Dr. Joseph M. Hahn Saint Mary s University Department of Astronomy & Physics September 1, 2005 Chapter

More information

PHYS 3313 Section 001 Lecture #20

PHYS 3313 Section 001 Lecture #20 PHYS 3313 Section 001 ecture #0 Monday, April 10, 017 Dr. Amir Farbin Infinite Square-well Potential Finite Square Well Potential Penetration Depth Degeneracy Simple Harmonic Oscillator 1 Announcements

More information

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question.

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. PH 105 Exam 2 VERSION A Name MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. 1) Is it possible for a system to have negative potential energy? A)

More information

CHAPTER 5 Wave Properties of Matter and Quantum Mechanics I

CHAPTER 5 Wave Properties of Matter and Quantum Mechanics I CHAPTER 5 Wave Properties of Matter and Quantum Mechanics I 5.1 X-Ray Scattering 5. De Broglie Waves 5.3 Electron Scattering 5.4 Wave Motion 5.5 Waves or Particles? 5.6 Uncertainty Principle Many experimental

More information

Physics 1501 Lecture 17

Physics 1501 Lecture 17 Physics 50: Lecture 7 Today s Agenda Homework #6: due Friday Midterm I: Friday only Topics Chapter 9» Momentum» Introduce Collisions Physics 50: Lecture 7, Pg Newton s nd Law: Chapter 9 Linear Momentum

More information

PHYS 3313 Section 001 Lecture # 22

PHYS 3313 Section 001 Lecture # 22 PHYS 3313 Section 001 Lecture # 22 Dr. Barry Spurlock Simple Harmonic Oscillator Barriers and Tunneling Alpha Particle Decay Schrodinger Equation on Hydrogen Atom Solutions for Schrodinger Equation for

More information