PES 3950/PHYS 6950: Homework Assignment 6

Size: px
Start display at page:

Download "PES 3950/PHYS 6950: Homework Assignment 6"

Transcription

1 PES 3950/PHYS 6950: Homewok Assignment 6 Handed out: Monday Apil 7 Due in: Wednesday May 6, at the stat of class at 3:05 pm shap Show all woking and easoning to eceive full points. Question 1 [5 points] A system contains a set of stationay eceptos with a concentation of feely diffusing ligands. Hee [R]... concentation of eceptos [L]... concentation of ligand and suppose you have the eaction [LR] <==> [L] + [R] a) Wite down the expession fo K D b) Find the atio of bound eceptos to total eceptos in tems of K D and [L]. c) K D is 1 nm. What pecentage of eceptos ae occupied when thee is a nm concentation of unbound ligand? Question [10 points] Hee, we con- Assume that a potein can be thought of as a chaged sphee in wate. side the effect of salt on its electical enegy. a) Compute the enegy of a chaged spheical potein of adius R, in wate, and in the pesence of monovalent salt at concentation c 0. Assume that the chaged esidues ae unifomly distibuted on the suface of the potein, i.e. Q e = 4πR π, whee = 5 angstoms is the typical adius o an amino acid. b) Plot the electical enegy of the potein as a function of its adius R fo the following fou diffeent salt concentations c 0 : 1 mm, 4 mm, 5 mm, and 100 mm. What conclusion do you daw about the effect of salt on the chaged state of a potein? Let z = 1.

2 Question 3 [15 points] In this poblem we study what would happen if we pulled on a one-dimensional co-polyme by attaching a mass m to the polyme. (Causing a foce mg.) So, ou basic system is a combination of two segments of diffeent lengths. As usual in one-dimension an individual segment can be oiented eithe up o down. So one possible state fo the system is whee both segments ae oiented down. This state is illustated below. The potential enegy of this state is mg(a 1 + a ). a) Illustate the 3 othe possible state and find the enegy of each state. b) Find the patition function. c) Find an expession fo the aveage length of the polyme at a tempeatue T fo a given foce of mg. (Assume thee ae N double segments.) Question 4 [0 points] GRADUATE STUDENTS ONLY As we have noted, some viuses ae cylindical in shape. Also, shot sections of DNA could be chaged and cylindical. In this poblem you will find the potential V () of a chaged cylinde in an ionic solution. a) Wite the thee sets of equations that goven the system - Poisson s equation, equations fo the concentation based on the Boltzmann facto, and an equation elating the chage density to the concentations. Let z = 1 to educe the witing. b) Obtain the new Poisson s Equation by combining all the equations. Assume V () is small and show that you get ( ) Co e V () = V () ε o ε kt c) Expand in the appopiate coodinate system and obtain the diffeential equation which govens V ().

3 d) The solution to this is difficult to find diectly. Fist look at an appoximation fo the egion whee is lage. Find the solution in this case - you only need to get the functional fom of the solution; you do not need to apply bounday conditions at the suface of the cylinde, but use the one at = infinity. e) Find the complete solution using Mathematica o anothe softwae. You can ask Mathematica to solve the diffeential equation d V d + 1 dv d = AV () by using the command DSolve[V []+(1/)*V []-A*V[]==0,V,]. Then plot both ou appoximation of exponential decay, found ealie, and the coect answe and comment on you solution - how does it elate to pevious esults fo spheical viuses o to esults elating to sceening of a chaged plate?

4 Homewok 6 Question 1 Solution A system contains a set of stationay eceptos with a concentation of feely diffusing ligands. Hee [R]... concentation of eceptos [L]... concentation of ligand and suppose you have the eaction [LR] <==> [L] + [R] a) Wite down the expession fo K d : answe: K d [ L][ R] [ LR] b) Find the atio of bound eceptos to total eceptos. answe: [ LR] [ L][ LR] [ L] bound LR [ R] [ R][ L] Kd total [ R] [ LR] [ LR] [ L][ LR] [ L] [ R] [ R][ L] K d c) K d is 1 nm. What pecentage of eceptos ae occupied when thee is a nm concentation of unbound ligand? [ L] Kd [ L] answe: atio = / 3 [ L] 1 Kd [ L] 1 Kd The atio is /3 and bound pecentage is 66 pecent.

5 Answe Question pat a) Simply use answe fom class (see lectue 8) U(R) = with 4eR Q 4 16e R Q 4 1 QV(R) Q 8 (R ) o R to obtain e R 1 e R V ( R) o ( R ) R o ( R ) with o (ze) kt C o pat b) 8 x c 0 = 1mM c 0 = 4mM c 0 = 5mM c 0 = 100mM 5 U (J) R (m) x 10-9

6 We plot the enegy U fo salt concentations c0 = 1; 4; 5; and 100mM, fo which the Debye length is 97; 49; 19; and 9.7 Angstom, espectively. We see that the enegy deceases as the salt concentation is inceased. This is to be expected since moe salt sceens the electical inteactions moe effectively. Matlab code: close all clea all clc %define all constants e0 = 8.85e-1; e = 80; =5e-10; z=1; k=1.38e-3; T=93; %oom temp NA=6.0*10^3; e=1.6e-19; c = [1,4,5,100]; %efeence concentation c0 R = linspace(0,3e-9,100); Q = 4*e*R.^/^; lambda = sqt(e0*e*k*t./(*(z*e)^*c*na)); %sceening lenght in m %%% fo c = 1; 4; 5; and 100mM, % the Debye length is 97; 49; 19; and 9:7_Angstom, espectively. U1 = lambda(1)./(8*pi*e0*e*(r+lambda(1))).*(q.^./r); U = lambda()./(8*pi*e0*e*(r+lambda())).*(q.^./r); U3 = lambda(3)./(8*pi*e0*e*(r+lambda(3))).*(q.^./r); U4 = lambda(4)./(8*pi*e0*e*(r+lambda(4))).*(q.^./r); figue(1) plot(r,u1,'k','linewidth',) hold on plot(r,u,'-','linewidth',) plot(r,u3,'bo','linewidth',) plot(r,u4,'g^','linewidth',) hold off xlabel('r (m)','fontsize',16) ylabel('u (J)','FontSize',16) legend('c_0 = 1mM', 'c_0 = 4mM','c_0 = 5mM','c_0 = 100mM')

7 Question 3 a) Illustate the 3 othe possible state and find the enegy of each state Hee ae the 4 states with the enegy of each state. a 1 a 1 - a a 1 + a m a E 1 = mg(a 1 + a ). E = mg(a 1 - a ). a 1 + a a 1 - a E 3 = +mg(a 1 - a ). E 4 = +mg(a 1 + a ). Basically the fou states coespond to 1) down/down ) down/up 3) up/down 4) up/up b) Find the patition function Since we have all the enegies, this is easy Z e E1 E E3 E4 e e e

8 c) Find an expession fo the aveage length of the polyme at a tempeatue T fo a given foce of mg. (Assume thee ae N double segments) This is easy. The aveage length of a double segment is given by <double segment length> = ( length in state s)(pobabilit y to be in state s) state s The aveage length of the whole chain will be the value above multiplied by N, the numbe of double segments. Fom the pictues above we see Length in state 1 L 1 = a 1 + a Length in state L = a 1 - a (we ae measuing positive length downwad in the diection of the foce) Length in state 3 L 3 = -(a 1 - a ) Length in state 4 L 4 = -(a 1 + a ) Using the Boltzmann pobability facto we get L E e s N (Ls ) Z state s L mg(a a ) mg(a a ) (a 1 a )e 1 (a1 a )e 1 N Z mg(a a ) mg(a a ) (a1 a 1 )e (a1 a 1 )e While this is ugly, it does solve the poblem.

9 Question 4 Solution As we have noted, some viuses ae cylindical in shape. In this poblem you will find the potential V() of a chaged cylinde in an ionic solution. a) Wite the thee sets of equations that goven the system - Poisson's Equation, Equations fo the concentation based on the Boltzmann facto, and an equation elating the chage density to the concentations. 1) ) () V() (1) o C C ev / kt () C o e () ev / kt () C o e 3) ( ) ec () ec () (3) b) Obtain the new Poisson's Equation by combining all the equations. Assume V() is small and show that you get C e V () o V () o kt (4) We substitute Eq () into Eq (3), and then put the esult of that in Eq (1). This gives C e o ev / kt ev / kt V() e e (5) o If V() is small compaed to kt we can expand the exponentials e ev / kt 1 ev / kt (6) Using this last esult in the pevious equation we obtain C e 1 V () o V () V () kt (7) o c) Expand in the appopiate coodinate system and obtain the diffeential equation which govens V() In cylindical coodinates the Laplacian is given by

10 Since nothing depends on o z, the deivatives on these vaiables ae zeo. We get O 1 V 1 V() (9) d V 1 dv 1 V() (10) d d d) The solution to this is difficult to find diectly. Fist look at an appoximation fo the egion whee is lage. Find the solution in this case If is lage, the equation educes to This has d V 1 V() d (11) / V () Ae (1) (8) as a solution. (We have eliminated the solution finite at = infinity.) / V () Ae so that the potential is

11 e) Comment on you solution - how does it elate to pevious esults fo spheical viuses. The solution in this limit is simila to that fom an infinite plate. Actually it is easonably easy to find the complete solution using Mathematica. If you ask Mathematica to solve the diffeential equation d V 1 dv AV() (13) d d by using the command DSolve[V''[]+(1/)*V'[]-A*V[]==0,V,] Then you get V() C J (i A) C Y ( i A) (14) 1 o o Hee J o is the Bessel function of the fist kind (with an imaginay agument) and Y o is the Bessel function of the second kind (also with an imaginay agument. We can use the bounday condition at infinity to eliminate one of these solutions. If we plot the J o function, we see that it looks like (Use A = 3 as an example) Jo Clealy, it diveges as goes to infinity and we should set C 1 = 0 to eliminate this tem. We ae left with V() C Y ( i A) (15) o

12 If we plot the eal pat of the Y o function with C = 1 and A=3, we get eal(v()) So fo this to look like an exponential, we need to take C = eal(v()) This has the expected behavio in that the potential deceases as we get away fom the oigin whee the chaged cylinde will be. If we plot both ou appoximation of exponential decay, found ealie with A = 3 and λ =1, and the coect answe, we get 3.5 Y 0 solution exponential solution eal(v())

13 We see that the two solutions ae quite close in behavio, especially as inceases, as expected. In fact, it is clumsy to use the Y o solution with an imaginay agument. It tuns out that the modified Bessel function of the second kind is also a solution to Eq (13). So ou potential (outside the cylinde) is given by. The constant C would be obtained by the bounday conditions at the suface of the cylinde V() CK o ( A) One can see this esult in a numbe of eseach papes A PHYSICAL METHOD FOR DERIVING THE ELECTROSTATIC INTERACTION BETWEEN ROD- LIKE POLYIONS AT ALL MUTUAL ANGLES STEPHEN L. BRENNER and V. ADRIAN PARSEGIAN BioPhysical Jounal VOLUME 14 (1974) p 37 Moe sophisticated teatments can also be found - See "The Electostatic Potential of B- DNA" by Jayaam et al in Biopolymes Vol (1989)

EM Boundary Value Problems

EM Boundary Value Problems EM Bounday Value Poblems 10/ 9 11/ By Ilekta chistidi & Lee, Seung-Hyun A. Geneal Desciption : Maxwell Equations & Loentz Foce We want to find the equations of motion of chaged paticles. The way to do

More information

working pages for Paul Richards class notes; do not copy or circulate without permission from PGR 2004/11/3 10:50

working pages for Paul Richards class notes; do not copy or circulate without permission from PGR 2004/11/3 10:50 woking pages fo Paul Richads class notes; do not copy o ciculate without pemission fom PGR 2004/11/3 10:50 CHAPTER7 Solid angle, 3D integals, Gauss s Theoem, and a Delta Function We define the solid angle,

More information

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Physics Department Physics 8.07: Electromagnetism II September 15, 2012 Prof. Alan Guth PROBLEM SET 2

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Physics Department Physics 8.07: Electromagnetism II September 15, 2012 Prof. Alan Guth PROBLEM SET 2 MASSACHUSETTS INSTITUTE OF TECHNOLOGY Physics Depatment Physics 8.07: Electomagnetism II Septembe 5, 202 Pof. Alan Guth PROBLEM SET 2 DUE DATE: Monday, Septembe 24, 202. Eithe hand it in at the lectue,

More information

Gauss Law. Physics 231 Lecture 2-1

Gauss Law. Physics 231 Lecture 2-1 Gauss Law Physics 31 Lectue -1 lectic Field Lines The numbe of field lines, also known as lines of foce, ae elated to stength of the electic field Moe appopiately it is the numbe of field lines cossing

More information

CHAPTER 25 ELECTRIC POTENTIAL

CHAPTER 25 ELECTRIC POTENTIAL CHPTE 5 ELECTIC POTENTIL Potential Diffeence and Electic Potential Conside a chaged paticle of chage in a egion of an electic field E. This filed exets an electic foce on the paticle given by F=E. When

More information

arxiv: v1 [physics.pop-ph] 3 Jun 2013

arxiv: v1 [physics.pop-ph] 3 Jun 2013 A note on the electostatic enegy of two point chages axiv:1306.0401v1 [physics.pop-ph] 3 Jun 013 A C Tot Instituto de Física Univesidade Fedeal do io de Janeio Caixa Postal 68.58; CEP 1941-97 io de Janeio,

More information

Gauss s Law Simulation Activities

Gauss s Law Simulation Activities Gauss s Law Simulation Activities Name: Backgound: The electic field aound a point chage is found by: = kq/ 2 If thee ae multiple chages, the net field at any point is the vecto sum of the fields. Fo a

More information

THE LAPLACE EQUATION. The Laplace (or potential) equation is the equation. u = 0. = 2 x 2. x y 2 in R 2

THE LAPLACE EQUATION. The Laplace (or potential) equation is the equation. u = 0. = 2 x 2. x y 2 in R 2 THE LAPLACE EQUATION The Laplace (o potential) equation is the equation whee is the Laplace opeato = 2 x 2 u = 0. in R = 2 x 2 + 2 y 2 in R 2 = 2 x 2 + 2 y 2 + 2 z 2 in R 3 The solutions u of the Laplace

More information

Related Rates - the Basics

Related Rates - the Basics Related Rates - the Basics In this section we exploe the way we can use deivatives to find the velocity at which things ae changing ove time. Up to now we have been finding the deivative to compae the

More information

11) A thin, uniform rod of mass M is supported by two vertical strings, as shown below.

11) A thin, uniform rod of mass M is supported by two vertical strings, as shown below. Fall 2007 Qualifie Pat II 12 minute questions 11) A thin, unifom od of mass M is suppoted by two vetical stings, as shown below. Find the tension in the emaining sting immediately afte one of the stings

More information

2. Electrostatics. Dr. Rakhesh Singh Kshetrimayum 8/11/ Electromagnetic Field Theory by R. S. Kshetrimayum

2. Electrostatics. Dr. Rakhesh Singh Kshetrimayum 8/11/ Electromagnetic Field Theory by R. S. Kshetrimayum 2. Electostatics D. Rakhesh Singh Kshetimayum 1 2.1 Intoduction In this chapte, we will study how to find the electostatic fields fo vaious cases? fo symmetic known chage distibution fo un-symmetic known

More information

PHYS 301 HOMEWORK #10 (Optional HW)

PHYS 301 HOMEWORK #10 (Optional HW) PHYS 301 HOMEWORK #10 (Optional HW) 1. Conside the Legende diffeential equation : 1 - x 2 y'' - 2xy' + m m + 1 y = 0 Make the substitution x = cos q and show the Legende equation tansfoms into d 2 y 2

More information

$ i. !((( dv vol. Physics 8.02 Quiz One Equations Fall q 1 q 2 r 2 C = 2 C! V 2 = Q 2 2C F = 4!" or. r ˆ = points from source q to observer

$ i. !((( dv vol. Physics 8.02 Quiz One Equations Fall q 1 q 2 r 2 C = 2 C! V 2 = Q 2 2C F = 4! or. r ˆ = points from source q to observer Physics 8.0 Quiz One Equations Fall 006 F = 1 4" o q 1 q = q q ˆ 3 4" o = E 4" o ˆ = points fom souce q to obseve 1 dq E = # ˆ 4" 0 V "## E "d A = Q inside closed suface o d A points fom inside to V =

More information

Page 1 of 6 Physics II Exam 1 155 points Name Discussion day/time Pat I. Questions 110. 8 points each. Multiple choice: Fo full cedit, cicle only the coect answe. Fo half cedit, cicle the coect answe and

More information

Chem 453/544 Fall /08/03. Exam #1 Solutions

Chem 453/544 Fall /08/03. Exam #1 Solutions Chem 453/544 Fall 3 /8/3 Exam # Solutions. ( points) Use the genealized compessibility diagam povided on the last page to estimate ove what ange of pessues A at oom tempeatue confoms to the ideal gas law

More information

POISSON S EQUATION 2 V 0

POISSON S EQUATION 2 V 0 POISSON S EQUATION We have seen how to solve the equation but geneally we have V V4k We now look at a vey geneal way of attacking this poblem though Geen s Functions. It tuns out that this poblem has applications

More information

Flux. Area Vector. Flux of Electric Field. Gauss s Law

Flux. Area Vector. Flux of Electric Field. Gauss s Law Gauss s Law Flux Flux in Physics is used to two distinct ways. The fist meaning is the ate of flow, such as the amount of wate flowing in a ive, i.e. volume pe unit aea pe unit time. O, fo light, it is

More information

Nuclear size corrections to the energy levels of single-electron atoms

Nuclear size corrections to the energy levels of single-electron atoms Nuclea size coections to the enegy levels of single-electon atoms Babak Nadii Nii a eseach Institute fo Astonomy and Astophysics of Maagha (IAAM IAN P. O. Box: 554-44. Abstact A study is made of nuclea

More information

PY208 Matter & Interactions Final Exam S2005

PY208 Matter & Interactions Final Exam S2005 PY Matte & Inteactions Final Exam S2005 Name (pint) Please cicle you lectue section below: 003 (Ramakishnan 11:20 AM) 004 (Clake 1:30 PM) 005 (Chabay 2:35 PM) When you tun in the test, including the fomula

More information

Physics 235 Chapter 5. Chapter 5 Gravitation

Physics 235 Chapter 5. Chapter 5 Gravitation Chapte 5 Gavitation In this Chapte we will eview the popeties of the gavitational foce. The gavitational foce has been discussed in geat detail in you intoductoy physics couses, and we will pimaily focus

More information

PHYS 1444 Section 501 Lecture #7

PHYS 1444 Section 501 Lecture #7 PHYS 1444 Section 51 Lectue #7 Wednesday, Feb. 8, 26 Equi-potential Lines and Sufaces Electic Potential Due to Electic Dipole E detemined fom V Electostatic Potential Enegy of a System of Chages Capacitos

More information

3.6 Applied Optimization

3.6 Applied Optimization .6 Applied Optimization Section.6 Notes Page In this section we will be looking at wod poblems whee it asks us to maimize o minimize something. Fo all the poblems in this section you will be taking the

More information

Diffusion and Transport. 10. Friction and the Langevin Equation. Langevin Equation. f d. f ext. f () t f () t. Then Newton s second law is ma f f f t.

Diffusion and Transport. 10. Friction and the Langevin Equation. Langevin Equation. f d. f ext. f () t f () t. Then Newton s second law is ma f f f t. Diffusion and Tanspot 10. Fiction and the Langevin Equation Now let s elate the phenomena of ownian motion and diffusion to the concept of fiction, i.e., the esistance to movement that the paticle in the

More information

I. CONSTRUCTION OF THE GREEN S FUNCTION

I. CONSTRUCTION OF THE GREEN S FUNCTION I. CONSTRUCTION OF THE GREEN S FUNCTION The Helmohltz equation in 4 dimensions is 4 + k G 4 x, x = δ 4 x x. In this equation, G is the Geen s function and 4 efes to the dimensionality. In the vey end,

More information

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Physics Department. Problem Set 10 Solutions. r s

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Physics Department. Problem Set 10 Solutions. r s MASSACHUSETTS INSTITUTE OF TECHNOLOGY Physics Depatment Physics 8.033 Decembe 5, 003 Poblem Set 10 Solutions Poblem 1 M s y x test paticle The figue above depicts the geomety of the poblem. The position

More information

PHYS 2135 Exam I February 13, 2018

PHYS 2135 Exam I February 13, 2018 Exam Total /200 PHYS 2135 Exam I Febuay 13, 2018 Name: Recitation Section: Five multiple choice questions, 8 points each Choose the best o most nealy coect answe Fo questions 6-9, solutions must begin

More information

Qualifying Examination Electricity and Magnetism Solutions January 12, 2006

Qualifying Examination Electricity and Magnetism Solutions January 12, 2006 1 Qualifying Examination Electicity and Magnetism Solutions Januay 12, 2006 PROBLEM EA. a. Fist, we conside a unit length of cylinde to find the elationship between the total chage pe unit length λ and

More information

CHAPTER 10 ELECTRIC POTENTIAL AND CAPACITANCE

CHAPTER 10 ELECTRIC POTENTIAL AND CAPACITANCE CHAPTER 0 ELECTRIC POTENTIAL AND CAPACITANCE ELECTRIC POTENTIAL AND CAPACITANCE 7 0. ELECTRIC POTENTIAL ENERGY Conside a chaged paticle of chage in a egion of an electic field E. This filed exets an electic

More information

Magnetic Field. Conference 6. Physics 102 General Physics II

Magnetic Field. Conference 6. Physics 102 General Physics II Physics 102 Confeence 6 Magnetic Field Confeence 6 Physics 102 Geneal Physics II Monday, Mach 3d, 2014 6.1 Quiz Poblem 6.1 Think about the magnetic field associated with an infinite, cuent caying wie.

More information

On the Sun s Electric-Field

On the Sun s Electric-Field On the Sun s Electic-Field D. E. Scott, Ph.D. (EE) Intoduction Most investigatos who ae sympathetic to the Electic Sun Model have come to agee that the Sun is a body that acts much like a esisto with a

More information

Field emission of Electrons from Negatively Charged Cylindrical Particles with Nonlinear Screening in a Dusty Plasma

Field emission of Electrons from Negatively Charged Cylindrical Particles with Nonlinear Screening in a Dusty Plasma Reseach & Reviews: Jounal of Pue and Applied Physics Field emission of Electons fom Negatively Chaged Cylindical Paticles with Nonlinea Sceening in a Dusty Plasma Gyan Pakash* Amity School of Engineeing

More information

Appendix B The Relativistic Transformation of Forces

Appendix B The Relativistic Transformation of Forces Appendix B The Relativistic Tansfomation of oces B. The ou-foce We intoduced the idea of foces in Chapte 3 whee we saw that the change in the fou-momentum pe unit time is given by the expession d d w x

More information

Single Particle State AB AB

Single Particle State AB AB LECTURE 3 Maxwell Boltzmann, Femi, and Bose Statistics Suppose we have a gas of N identical point paticles in a box of volume V. When we say gas, we mean that the paticles ae not inteacting with one anothe.

More information

EM-2. 1 Coulomb s law, electric field, potential field, superposition q. Electric field of a point charge (1)

EM-2. 1 Coulomb s law, electric field, potential field, superposition q. Electric field of a point charge (1) EM- Coulomb s law, electic field, potential field, supeposition q ' Electic field of a point chage ( ') E( ) kq, whee k / 4 () ' Foce of q on a test chage e at position is ee( ) Electic potential O kq

More information

Review: Electrostatics and Magnetostatics

Review: Electrostatics and Magnetostatics Review: Electostatics and Magnetostatics In the static egime, electomagnetic quantities do not vay as a function of time. We have two main cases: ELECTROSTATICS The electic chages do not change postion

More information

Math 124B February 02, 2012

Math 124B February 02, 2012 Math 24B Febuay 02, 202 Vikto Gigoyan 8 Laplace s equation: popeties We have aleady encounteed Laplace s equation in the context of stationay heat conduction and wave phenomena. Recall that in two spatial

More information

7.2. Coulomb s Law. The Electric Force

7.2. Coulomb s Law. The Electric Force Coulomb s aw Recall that chaged objects attact some objects and epel othes at a distance, without making any contact with those objects Electic foce,, o the foce acting between two chaged objects, is somewhat

More information

Electromagnetic Theory 1

Electromagnetic Theory 1 / lectomagnetic Theoy uestion : lectostatic Potential negy A sphee of adius caies a positive chage density ρ constant Obviously the spheical coodinates system is appopiate hee Take - C m - and cm τ a)

More information

1 Spherical multipole moments

1 Spherical multipole moments Jackson notes 9 Spheical multipole moments Suppose we have a chage distibution ρ (x) wheeallofthechageiscontained within a spheical egion of adius R, as shown in the diagam. Then thee is no chage in the

More information

(a) Unde zeo-bias conditions, thee ae no lled states on one side of the junction which ae at the same enegy as the empty allowed states on the othe si

(a) Unde zeo-bias conditions, thee ae no lled states on one side of the junction which ae at the same enegy as the empty allowed states on the othe si 1 Esaki Diode hen the concentation of impuity atoms in a pn-diode is vey high, the depletion laye width is educed to about 1 nm. Classically, a caie must have an enegy at least equal to the potential-baie

More information

Exam 3, vers Physics Spring, 2003

Exam 3, vers Physics Spring, 2003 1 of 9 Exam 3, ves. 0001 - Physics 1120 - Sping, 2003 NAME Signatue Student ID # TA s Name(Cicle one): Michael Scheffestein, Chis Kelle, Paisa Seelungsawat Stating time of you Tues ecitation (wite time

More information

HW Solutions # MIT - Prof. Please study example 12.5 "from the earth to the moon". 2GmA v esc

HW Solutions # MIT - Prof. Please study example 12.5 from the earth to the moon. 2GmA v esc HW Solutions # 11-8.01 MIT - Pof. Kowalski Univesal Gavity. 1) 12.23 Escaping Fom Asteoid Please study example 12.5 "fom the eath to the moon". a) The escape velocity deived in the example (fom enegy consevation)

More information

Why Professor Richard Feynman was upset solving the Laplace equation for spherical waves? Anzor A. Khelashvili a)

Why Professor Richard Feynman was upset solving the Laplace equation for spherical waves? Anzor A. Khelashvili a) Why Pofesso Richad Feynman was upset solving the Laplace equation fo spheical waves? Anzo A. Khelashvili a) Institute of High Enegy Physics, Iv. Javakhishvili Tbilisi State Univesity, Univesity St. 9,

More information

Scattering in Three Dimensions

Scattering in Three Dimensions Scatteing in Thee Dimensions Scatteing expeiments ae an impotant souce of infomation about quantum systems, anging in enegy fom vey low enegy chemical eactions to the highest possible enegies at the LHC.

More information

Fields and Waves I Spring 2005 Homework 8. Due: 3 May 2005

Fields and Waves I Spring 2005 Homework 8. Due: 3 May 2005 Fields and Waves I Sping 005 Homewok 8 Tansmission Lines Due: 3 May 005. Multiple Choice (6) a) The SWR (standing wave atio): a) is a measue of the match between the souce impedance and line impedance

More information

PHYSICS 4E FINAL EXAM SPRING QUARTER 2010 PROF. HIRSCH JUNE 11 Formulas and constants: hc =12,400 ev A ; k B. = hf " #, # $ work function.

PHYSICS 4E FINAL EXAM SPRING QUARTER 2010 PROF. HIRSCH JUNE 11 Formulas and constants: hc =12,400 ev A ; k B. = hf  #, # $ work function. PHYSICS 4E FINAL EXAM SPRING QUARTER 1 Fomulas and constants: hc =1,4 ev A ; k B =1/11,6 ev/k ; ke =14.4eVA ; m e c =.511"1 6 ev ; m p /m e =1836 Relativistic enegy - momentum elation E = m c 4 + p c ;

More information

School of Electrical and Computer Engineering, Cornell University. ECE 303: Electromagnetic Fields and Waves. Fall 2007

School of Electrical and Computer Engineering, Cornell University. ECE 303: Electromagnetic Fields and Waves. Fall 2007 School of Electical and Compute Engineeing, Conell Univesity ECE 303: Electomagnetic Fields and Waves Fall 007 Homewok 8 Due on Oct. 19, 007 by 5:00 PM Reading Assignments: i) Review the lectue notes.

More information

= e2. = 2e2. = 3e2. V = Ze2. where Z is the atomic numnber. Thus, we take as the Hamiltonian for a hydrogenic. H = p2 r. (19.4)

= e2. = 2e2. = 3e2. V = Ze2. where Z is the atomic numnber. Thus, we take as the Hamiltonian for a hydrogenic. H = p2 r. (19.4) Chapte 9 Hydogen Atom I What is H int? That depends on the physical system and the accuacy with which it is descibed. A natual stating point is the fom H int = p + V, (9.) µ which descibes a two-paticle

More information

Inverse Square Law and Polarization

Inverse Square Law and Polarization Invese Squae Law and Polaization Objectives: To show that light intensity is invesely popotional to the squae of the distance fom a point light souce and to show that the intensity of the light tansmitted

More information

The geometric construction of Ewald sphere and Bragg condition:

The geometric construction of Ewald sphere and Bragg condition: The geometic constuction of Ewald sphee and Bagg condition: The constuction of Ewald sphee must be done such that the Bagg condition is satisfied. This can be done as follows: i) Daw a wave vecto k in

More information

Physics 122, Fall October 2012

Physics 122, Fall October 2012 Today in Physics 1: electostatics eview David Blaine takes the pactical potion of his electostatics midtem (Gawke). 11 Octobe 01 Physics 1, Fall 01 1 Electostatics As you have pobably noticed, electostatics

More information

University of Illinois at Chicago Department of Physics. Electricity & Magnetism Qualifying Examination

University of Illinois at Chicago Department of Physics. Electricity & Magnetism Qualifying Examination E&M poblems Univesity of Illinois at Chicago Depatment of Physics Electicity & Magnetism Qualifying Examination Januay 3, 6 9. am : pm Full cedit can be achieved fom completely coect answes to 4 questions.

More information

Lecture 04: HFK Propagation Physical Optics II (Optical Sciences 330) (Updated: Friday, April 29, 2005, 8:05 PM) W.J. Dallas

Lecture 04: HFK Propagation Physical Optics II (Optical Sciences 330) (Updated: Friday, April 29, 2005, 8:05 PM) W.J. Dallas C:\Dallas\0_Couses\0_OpSci_330\0 Lectue Notes\04 HfkPopagation.doc: Page of 9 Lectue 04: HFK Popagation Physical Optics II (Optical Sciences 330) (Updated: Fiday, Apil 9, 005, 8:05 PM) W.J. Dallas The

More information

Homework 7 Solutions

Homework 7 Solutions Homewok 7 olutions Phys 4 Octobe 3, 208. Let s talk about a space monkey. As the space monkey is oiginally obiting in a cicula obit and is massive, its tajectoy satisfies m mon 2 G m mon + L 2 2m mon 2

More information

Lecture 23. Representation of the Dirac delta function in other coordinate systems

Lecture 23. Representation of the Dirac delta function in other coordinate systems Lectue 23 Repesentation of the Diac delta function in othe coodinate systems In a geneal sense, one can wite, ( ) = (x x ) (y y ) (z z ) = (u u ) (v v ) (w w ) J Whee J epesents the Jacobian of the tansfomation.

More information

Question 1: The dipole

Question 1: The dipole Septembe, 08 Conell Univesity, Depatment of Physics PHYS 337, Advance E&M, HW #, due: 9/5/08, :5 AM Question : The dipole Conside a system as discussed in class and shown in Fig.. in Heald & Maion.. Wite

More information

Hopefully Helpful Hints for Gauss s Law

Hopefully Helpful Hints for Gauss s Law Hopefully Helpful Hints fo Gauss s Law As befoe, thee ae things you need to know about Gauss s Law. In no paticula ode, they ae: a.) In the context of Gauss s Law, at a diffeential level, the electic flux

More information

Determining solar characteristics using planetary data

Determining solar characteristics using planetary data Detemining sola chaacteistics using planetay data Intoduction The Sun is a G-type main sequence sta at the cente of the Sola System aound which the planets, including ou Eath, obit. In this investigation

More information

Magnetic Dipoles Challenge Problem Solutions

Magnetic Dipoles Challenge Problem Solutions Magnetic Dipoles Challenge Poblem Solutions Poblem 1: Cicle the coect answe. Conside a tiangula loop of wie with sides a and b. The loop caies a cuent I in the diection shown, and is placed in a unifom

More information

221B Lecture Notes Scattering Theory I

221B Lecture Notes Scattering Theory I Why Scatteing? B Lectue Notes Scatteing Theoy I Scatteing of paticles off taget has been one of the most impotant applications of quantum mechanics. It is pobably the most effective way to study the stuctue

More information

Lecture 8 - Gauss s Law

Lecture 8 - Gauss s Law Lectue 8 - Gauss s Law A Puzzle... Example Calculate the potential enegy, pe ion, fo an infinite 1D ionic cystal with sepaation a; that is, a ow of equally spaced chages of magnitude e and altenating sign.

More information

Exam 1. Exam 1 is on Tuesday, February 14, from 5:00-6:00 PM.

Exam 1. Exam 1 is on Tuesday, February 14, from 5:00-6:00 PM. Exam 1 Exam 1 is on Tuesday, Febuay 14, fom 5:00-6:00 PM. Testing Cente povides accommodations fo students with special needs I must set up appointments one week befoe exam Deadline fo submitting accommodation

More information

B da = 0. Q E da = ε. E da = E dv

B da = 0. Q E da = ε. E da = E dv lectomagnetic Theo Pof Ruiz, UNC Asheville, doctophs on YouTube Chapte Notes The Maxwell quations in Diffeential Fom 1 The Maxwell quations in Diffeential Fom We will now tansfom the integal fom of the

More information

, and the curve BC is symmetrical. Find also the horizontal force in x-direction on one side of the body. h C

, and the curve BC is symmetrical. Find also the horizontal force in x-direction on one side of the body. h C Umeå Univesitet, Fysik 1 Vitaly Bychkov Pov i teknisk fysik, Fluid Dynamics (Stömningsläa), 2013-05-31, kl 9.00-15.00 jälpmedel: Students may use any book including the textbook Lectues on Fluid Dynamics.

More information

Phys102 Second Major-182 Zero Version Monday, March 25, 2019 Page: 1

Phys102 Second Major-182 Zero Version Monday, March 25, 2019 Page: 1 Monday, Mach 5, 019 Page: 1 Q1. Figue 1 shows thee pais of identical conducting sphees that ae to be touched togethe and then sepaated. The initial chages on them befoe the touch ae indicated. Rank the

More information

-Δ u = λ u. u(x,y) = u 1. (x) u 2. (y) u(r,θ) = R(r) Θ(θ) Δu = 2 u + 2 u. r = x 2 + y 2. tan(θ) = y/x. r cos(θ) = cos(θ) r.

-Δ u = λ u. u(x,y) = u 1. (x) u 2. (y) u(r,θ) = R(r) Θ(θ) Δu = 2 u + 2 u. r = x 2 + y 2. tan(θ) = y/x. r cos(θ) = cos(θ) r. The Laplace opeato in pola coodinates We now conside the Laplace opeato with Diichlet bounday conditions on a cicula egion Ω {(x,y) x + y A }. Ou goal is to compute eigenvalues and eigenfunctions of the

More information

Welcome to Physics 272

Welcome to Physics 272 Welcome to Physics 7 Bob Mose mose@phys.hawaii.edu http://www.phys.hawaii.edu/~mose/physics7.html To do: Sign into Masteing Physics phys-7 webpage Registe i-clickes (you i-clicke ID to you name on class-list)

More information

Computational Methods of Solid Mechanics. Project report

Computational Methods of Solid Mechanics. Project report Computational Methods of Solid Mechanics Poject epot Due on Dec. 6, 25 Pof. Allan F. Bowe Weilin Deng Simulation of adhesive contact with molecula potential Poject desciption In the poject, we will investigate

More information

Physics 2B Chapter 22 Notes - Magnetic Field Spring 2018

Physics 2B Chapter 22 Notes - Magnetic Field Spring 2018 Physics B Chapte Notes - Magnetic Field Sping 018 Magnetic Field fom a Long Staight Cuent-Caying Wie In Chapte 11 we looked at Isaac Newton s Law of Gavitation, which established that a gavitational field

More information

Physics 121 Hour Exam #5 Solution

Physics 121 Hour Exam #5 Solution Physics 2 Hou xam # Solution This exam consists of a five poblems on five pages. Point values ae given with each poblem. They add up to 99 points; you will get fee point to make a total of. In any given

More information

4. Electrodynamic fields

4. Electrodynamic fields 4. Electodynamic fields D. Rakhesh Singh Kshetimayum 1 4.1 Intoduction Electodynamics Faaday s law Maxwell s equations Wave equations Lenz s law Integal fom Diffeential fom Phaso fom Bounday conditions

More information

( ) [ ] [ ] [ ] δf φ = F φ+δφ F. xdx.

( ) [ ] [ ] [ ] δf φ = F φ+δφ F. xdx. 9. LAGRANGIAN OF THE ELECTROMAGNETIC FIELD In the pevious section the Lagangian and Hamiltonian of an ensemble of point paticles was developed. This appoach is based on a qt. This discete fomulation can

More information

Physics 107 TUTORIAL ASSIGNMENT #8

Physics 107 TUTORIAL ASSIGNMENT #8 Physics 07 TUTORIAL ASSIGNMENT #8 Cutnell & Johnson, 7 th edition Chapte 8: Poblems 5,, 3, 39, 76 Chapte 9: Poblems 9, 0, 4, 5, 6 Chapte 8 5 Inteactive Solution 8.5 povides a model fo solving this type

More information

MODULE 5a and 5b (Stewart, Sections 12.2, 12.3) INTRO: In MATH 1114 vectors were written either as rows (a1, a2,..., an) or as columns a 1 a. ...

MODULE 5a and 5b (Stewart, Sections 12.2, 12.3) INTRO: In MATH 1114 vectors were written either as rows (a1, a2,..., an) or as columns a 1 a. ... MODULE 5a and 5b (Stewat, Sections 2.2, 2.3) INTRO: In MATH 4 vectos wee witten eithe as ows (a, a2,..., an) o as columns a a 2... a n and the set of all such vectos of fixed length n was called the vecto

More information

Reading Assignment. Problem Description for Homework #9. Read Chapters 29 and 30.

Reading Assignment. Problem Description for Homework #9. Read Chapters 29 and 30. Reading Assignment Read Chaptes 29 and 30. Poblem Desciption fo Homewok #9 In this homewok, you will solve the inhomogeneous Laplace s equation to calculate the electic scala potential that exists between

More information

The Millikan Experiment: Determining the Elementary Charge

The Millikan Experiment: Determining the Elementary Charge LAB EXERCISE 7.5.1 7.5 The Elementay Chage (p. 374) Can you think of a method that could be used to suggest that an elementay chage exists? Figue 1 Robet Millikan (1868 1953) m + q V b The Millikan Expeiment:

More information

Phys 201A. Homework 5 Solutions

Phys 201A. Homework 5 Solutions Phys 201A Homewok 5 Solutions 3. In each of the thee cases, you can find the changes in the velocity vectos by adding the second vecto to the additive invese of the fist and dawing the esultant, and by

More information

EXAM NMR (8N090) November , am

EXAM NMR (8N090) November , am EXA NR (8N9) Novembe 5 9, 9. 1. am Remaks: 1. The exam consists of 8 questions, each with 3 pats.. Each question yields the same amount of points. 3. You ae allowed to use the fomula sheet which has been

More information

Chapter 22 The Electric Field II: Continuous Charge Distributions

Chapter 22 The Electric Field II: Continuous Charge Distributions Chapte The lectic Field II: Continuous Chage Distibutions A ing of adius a has a chage distibution on it that vaies as l(q) l sin q, as shown in Figue -9. (a) What is the diection of the electic field

More information

EN40: Dynamics and Vibrations. Midterm Examination Thursday March

EN40: Dynamics and Vibrations. Midterm Examination Thursday March EN40: Dynamics and Vibations Midtem Examination Thusday Mach 9 2017 School of Engineeing Bown Univesity NAME: Geneal Instuctions No collaboation of any kind is pemitted on this examination. You may bing

More information

Motion along curved path *

Motion along curved path * OpenStax-CNX module: m14091 1 Motion along cuved path * Sunil Kuma Singh This wok is poduced by OpenStax-CNX and licensed unde the Ceative Commons Attibution License 2.0 We all expeience motion along a

More information

Calculus I Section 4.7. Optimization Equation. Math 151 November 29, 2008

Calculus I Section 4.7. Optimization Equation. Math 151 November 29, 2008 Calculus I Section 4.7 Optimization Solutions Math 151 Novembe 9, 008 The following poblems ae maimum/minimum optimization poblems. They illustate one of the most impotant applications of the fist deivative.

More information

Physics 122, Fall September 2012

Physics 122, Fall September 2012 Physics 1, Fall 1 7 Septembe 1 Today in Physics 1: getting V fom E When it s best to get V fom E, athe than vice vesa V within continuous chage distibutions Potential enegy of continuous chage distibutions

More information

(Sample 3) Exam 1 - Physics Patel SPRING 1998 FORM CODE - A (solution key at end of exam)

(Sample 3) Exam 1 - Physics Patel SPRING 1998 FORM CODE - A (solution key at end of exam) (Sample 3) Exam 1 - Physics 202 - Patel SPRING 1998 FORM CODE - A (solution key at end of exam) Be sue to fill in you student numbe and FORM lette (A, B, C) on you answe sheet. If you foget to include

More information

Electric Potential and Gauss s Law, Configuration Energy Challenge Problem Solutions

Electric Potential and Gauss s Law, Configuration Energy Challenge Problem Solutions Poblem 1: Electic Potential an Gauss s Law, Configuation Enegy Challenge Poblem Solutions Consie a vey long o, aius an chage to a unifom linea chage ensity λ a) Calculate the electic fiel eveywhee outsie

More information

Pulse Neutron Neutron (PNN) tool logging for porosity Some theoretical aspects

Pulse Neutron Neutron (PNN) tool logging for porosity Some theoretical aspects Pulse Neuton Neuton (PNN) tool logging fo poosity Some theoetical aspects Intoduction Pehaps the most citicism of Pulse Neuton Neuon (PNN) logging methods has been chage that PNN is to sensitive to the

More information

Today in Physics 122: getting V from E

Today in Physics 122: getting V from E Today in Physics 1: getting V fom E When it s best to get V fom E, athe than vice vesa V within continuous chage distibutions Potential enegy of continuous chage distibutions Capacitance Potential enegy

More information

Chapter 9 Dynamic stability analysis III Lateral motion (Lectures 33 and 34)

Chapter 9 Dynamic stability analysis III Lateral motion (Lectures 33 and 34) Pof. E.G. Tulapukaa Stability and contol Chapte 9 Dynamic stability analysis Lateal motion (Lectues 33 and 34) Keywods : Lateal dynamic stability - state vaiable fom of equations, chaacteistic equation

More information

Radial Inflow Experiment:GFD III

Radial Inflow Experiment:GFD III Radial Inflow Expeiment:GFD III John Mashall Febuay 6, 003 Abstact We otate a cylinde about its vetical axis: the cylinde has a cicula dain hole in the cente of its bottom. Wate entes at a constant ate

More information

To Feel a Force Chapter 7 Static equilibrium - torque and friction

To Feel a Force Chapter 7 Static equilibrium - torque and friction To eel a oce Chapte 7 Chapte 7: Static fiction, toque and static equilibium A. Review of foce vectos Between the eath and a small mass, gavitational foces of equal magnitude and opposite diection act on

More information

Nuclear and Particle Physics - Lecture 20 The shell model

Nuclear and Particle Physics - Lecture 20 The shell model 1 Intoduction Nuclea and Paticle Physics - Lectue 0 The shell model It is appaent that the semi-empiical mass fomula does a good job of descibing tends but not the non-smooth behaviou of the binding enegy.

More information

Do not turn over until you are told to do so by the Invigilator.

Do not turn over until you are told to do so by the Invigilator. UNIVERSITY OF EAST ANGLIA School of Mathematics Main Seies UG Examination 2015 16 FLUID DYNAMICS WITH ADVANCED TOPICS MTH-MD59 Time allowed: 3 Hous Attempt QUESTIONS 1 and 2, and THREE othe questions.

More information

Review for Midterm-1

Review for Midterm-1 Review fo Midtem-1 Midtem-1! Wednesday Sept. 24th at 6pm Section 1 (the 4:10pm class) exam in BCC N130 (Business College) Section 2 (the 6:00pm class) exam in NR 158 (Natual Resouces) Allowed one sheet

More information

Chapter 3 Optical Systems with Annular Pupils

Chapter 3 Optical Systems with Annular Pupils Chapte 3 Optical Systems with Annula Pupils 3 INTRODUCTION In this chapte, we discuss the imaging popeties of a system with an annula pupil in a manne simila to those fo a system with a cicula pupil The

More information

( ) Make-up Tests. From Last Time. Electric Field Flux. o The Electric Field Flux through a bit of area is

( ) Make-up Tests. From Last Time. Electric Field Flux. o The Electric Field Flux through a bit of area is Mon., 3/23 Wed., 3/25 Thus., 3/26 Fi., 3/27 Mon., 3/30 Tues., 3/31 21.4-6 Using Gauss s & nto to Ampee s 21.7-9 Maxwell s, Gauss s, and Ampee s Quiz Ch 21, Lab 9 Ampee s Law (wite up) 22.1-2,10 nto to

More information

Solutions. V in = ρ 0. r 2 + a r 2 + b, where a and b are constants. The potential at the center of the atom has to be finite, so a = 0. r 2 + b.

Solutions. V in = ρ 0. r 2 + a r 2 + b, where a and b are constants. The potential at the center of the atom has to be finite, so a = 0. r 2 + b. Solutions. Plum Pudding Model (a) Find the coesponding electostatic potential inside and outside the atom. Fo R The solution can be found by integating twice, 2 V in = ρ 0 ε 0. V in = ρ 0 6ε 0 2 + a 2

More information

is the instantaneous position vector of any grid point or fluid

is the instantaneous position vector of any grid point or fluid Absolute inetial, elative inetial and non-inetial coodinates fo a moving but non-defoming contol volume Tao Xing, Pablo Caica, and Fed Sten bjective Deive and coelate the govening equations of motion in

More information

Current Balance Warm Up

Current Balance Warm Up PHYSICS EXPERIMENTS 133 Cuent Balance-1 Cuent Balance Wam Up 1. Foce between cuent-caying wies Wie 1 has a length L (whee L is "long") and caies a cuent I 0. What is the magnitude of the magnetic field

More information

Algebra-based Physics II

Algebra-based Physics II lgebabased Physics II Chapte 19 Electic potential enegy & The Electic potential Why enegy is stoed in an electic field? How to descibe an field fom enegetic point of view? Class Website: Natual way of

More information

ac p Answers to questions for The New Introduction to Geographical Economics, 2 nd edition Chapter 3 The core model of geographical economics

ac p Answers to questions for The New Introduction to Geographical Economics, 2 nd edition Chapter 3 The core model of geographical economics Answes to questions fo The New ntoduction to Geogaphical Economics, nd edition Chapte 3 The coe model of geogaphical economics Question 3. Fom intoductoy mico-economics we know that the condition fo pofit

More information