Tolman-Oppenheimer-Volkoff equations

Size: px
Start display at page:

Download "Tolman-Oppenheimer-Volkoff equations"

Transcription

1 Tolman-Oppenheime-Volkoff equations This Jupyte/SageMath woksheet is elative to the lectues Geneal elativity computations with SageManifolds given at the NewCompSta School 216 (Coimba, Potugal). These computations ae based on SageManifolds (vesion 1., as included in SageMath 7.5). Click hee to download the woksheet file (ipynb fomat). To un it, you must stat SageMath with the Jupyte notebook, with the command sage -n jupyte This woksheet is divided in two pats: 1. Deiving the TOV system fom the Einstein equation 2. Solving the TOV system to get stella models NB: a vesion of SageMath at least equal to 7.5 is equied to un this woksheet: In [1]: Out[1]: vesion() 'SageMath vesion 7.5.1, Release Date: ' Fist we set up the notebook to display mathematical objects using LaTeX endeing: In [2]: %display latex 1. Deiving the TOV system fom the Einstein equation Spacetime M We declae the spacetime manifold : In [3]: M Manifold(4, 'M') pint(m) 4-dimensional diffeentiable manifold M To get some infomation about the object M, we use the question mak: In [4]: M? Using a double question mak, we get the Python souce code (SageMath is open souce, isn't it?): In [5]: M?? We declae the chat of spheical coodinates how to use it, we again use the question mak: (t,, θ, ϕ), via the method chat acting on M; to see In [6]: M.chat? 1

2 In [7]: Out[7]: X.<t,,th,ph> M.chat('t :(,+oo) th:(,pi):\theta ph:(,2*pi):\phi ') X (M, (t,, θ, ϕ)) Metic tenso The static and spheically symmetic metic ansatz, with the unknown functions and : ν() m() In [8]: Out[8]: g M.loentzian_metic('g') nu function('nu') m function('m') g[,] -exp(2*nu()) g[1,1] 1/(1-2*m()/) g[2,2] ^2 g[3,3] (*sin(th))^2 g.display() g e(2 ν()) 1 dt dt + ( 2 m() d d + 2 dθ dθ + 2 sin (θ) 2 dϕ 1 ) dϕ One can display the metic components as a list: In [9]: Out[9]: g.display_comp() g t t g g θ θ g ϕ ϕ (2 ν()) e m() 2 2 sin (θ) 2 By default, only the nonzeo components ae shown; to get all the components, set the option only_nonzeo to False: 2

3 In [1]: Out[1]: g.display_comp(only_nonzeofalse) g t t g t g t θ g t ϕ g t g g θ g ϕ g θ t g θ g θ θ g θ ϕ g ϕ t g ϕ g ϕ θ g ϕ ϕ (2 ν()) e m() 2 sin (θ) 2 We can also display the metic components as a matix, via the [] opeato: In [11]: g[:] Out[11]: e (2 ν()) m() 2 2 sin (θ) 2 The [] opeato can also be used to access to individual elements: In [12]: Out[12]: g[,] (2 ν()) e Einstein equation Let us stat by evaluating the Ricci tenso of : g In [13]: Ric g.icci() pint(ric) Field of symmetic bilinea foms Ric(g) on the 4-dimensional diffeent iable manifold M 3

4 In [14]: Out[14]: Ric.display() ( 2 e (2 ν()) 2 e (2 ν()) ν 2 m ())( ) (2 ν()) m (e 2 e (2 ν()) + 3 e m ()) + ( 2 e (2 ν()) (2 ν()) 2 e m ()) 2 ν Ric (g) 2 2 (2 ν()) ν dt dt ( ν 2 m m ())( ) 2 ( 2 m ν m ()) + ( m ()) 2 ν m () + d m () d + ( m 2 ν ( 2 m ()) + m () m 2 ν (θ) 2 ) dθ dθ ( ( 2 m ()) + m ()) sin + dϕ dϕ The Ricci scala is natually obtained by the method icci_scala(): In [15]: g.icci_scala? In [16]: Out[16]: (g) : M g.icci_scala().display() (t,, θ, ϕ) R As a check we can also compute it by taking the tace of the Ricci tenso with espect to : ν 2 m 2 (( 2 2 m()) ( ( 2 +3 m()) +( 2 m()) 2 ) 2 ) 2 ν 2 g 2 ν m In [17]: Out[17]: g.icci_scala() g.invese()['^{ab}']*ric['_{ab}'] Tue The Einstein tenso o in index-fee notation: 1 G ab : R ab R, 2 g ab G : Ric(g) 1 (g) g 2 In [18]: G Ric - 1/2*g.icci_scala() * g G.set_name('G') pint(g) Field of symmetic bilinea foms G on the 4-dimensional diffeentiable manifold M 4

5 In [19]: Out[19]: G.display() (2 ν()) m 2 e 2 (( 2 2 m ()) m ()) G dt dt + d d 2 ( m () ) ( ν 2 m m ())( ) ( 2 m 2 + m ()) ν + ( m ()) ν + m () dθ dθ ν 2 m (( m ()) ( ( + m ) ()) ν 2 m 2 ν sin (θ) 2 + ( m ()) 2 ν + m () ) + 2 dϕ dϕ The enegy-momentum tenso We conside a pefect fluid matte model. Let us fist defined the fluid 4-velocity : u In [2]: Out[2]: u M.vecto_field('u') u[] exp(-nu()) u.display() u e ( ν()) t In [21]: u[:] Out[21]: [ e ( ν()),,, ] In [22]: pint(u.paent()) Fee module X(M) of vecto fields on the 4-dimensional diffeentiable m anifold M u g(u, u) 1 Let us check that is a nomalized timelike vecto, i.e. that, o, in index-fee notation, : g ab u a u b 1 In [23]: g(u,u) Out[23]: g (u, u) In [24]: pint(g(u,u)) Scala field g(u,u) on the 4-dimensional diffeentiable manifold M In [25]: g(u,u).display() Out[25]: g (u, u) : M (t,, θ, ϕ) R 1 In [26]: Out[26]: g(u,u).paent() C (M) 5

6 In [27]: pint(g(u,u).paent()) Algeba of diffeentiable scala fields on the 4-dimensional diffeenti able manifold M In [28]: g(u,u) -1 Out[28]: Tue To fom the enegy-momentum tenso, we need the 1-fom u a g ab u b : u that is metic-dual to the vecto, i.e. u In [29]: u_fom u.down(g) pint(u_fom) 1-fom on the 4-dimensional diffeentiable manifold M In [3]: Out[3]: e ν() dt u_fom.display() The enegy-momentum tenso is then o in index-fee notation: Since the tenso poduct T ab (ρ + p) u a u b + p g ab, T (ρ + p) u u + p g is taken with the * opeato, we wite: In [31]: ho function('ho') p function('p') T (ho()+p())* (u_fom * u_fom) + p() * g T.set_name('T') pint(t) Field of symmetic bilinea foms T on the 4-dimensional diffeentiable manifold M In [32]: Out[32]: T.display() (2 ν()) p () T e ρ () dt dt + ( ) d d + 2 p () dθ dθ 2 m () + 2 p () sin (θ) 2 dϕ dϕ In [33]: T(u,u) Out[33]: T (u, u) In [34]: pint(t(u,u)) Scala field T(u,u) on the 4-dimensional diffeentiable manifold M In [35]: T(u,u).display() Out[35]: T (u, u) : M (t,, θ, ϕ) R ρ () 6

7 The Einstein equation The Einstein equation is E G 8πT E : G 8πT We ewite it as with : In [36]: E G - 8*pi*T E.set_name('E') pint(e) Field of symmetic bilinea foms E on the 4-dimensional diffeentiable manifold M In [37]: Out[37]: In [38]: E.display() + ( E.display_comp() (2 ν()) e 2 (4 π 2 e ρ () ) E dt dt 2 (2 ν()) m 2 (4 π 3p () ( 2 2 m ()) ν + m ()) m () d d ) 8 π 3 p () ( ν 2 m m ())( ) + + ( 2 m 2 + m ()) ν ( m ()) ν m () dθ ν dθ 2 m ( 8 π3p () ( m ()) ( + + ( + m ) ()) ( m ()) 2 ν m () ) 2 dϕ 2 m 2 ν sin (θ) 2 dϕ Out[38]: E t t E E θ θ E ϕ ϕ 2 (4 π 2 (2 ν()) e ρ() e ) 2 (2 ν()) m 2 (4 π 3 p() ( 2 ν 2 m()) +m()) m() 8 π 3p() ( m()) ( ν ) 2 m + +( 2 m 2 ν +m()) ( m()) 2 ν m() 2 (8 π 3p() ( m()) ( ν ) 2 m + +( 2 m 2 ν +m()) ( m()) 2 ν m() ) sin 2 ( In [39]: Out[39]: In [4]: Out[4]: E[,] 2 (4 π 2 (2 ν()) e ρ () e ) 2 (2 ν()) m EE_sol solve(e[,].exp(), diff(m(),)) EE_sol [ m () 4 π 2 ρ () ] 7

8 In [41]: Out[41]: EE EE_sol[] EE m () 4 π 2 ρ () In [42]: Out[42]: In [43]: Out[43]: In [44]: Out[44]: In [45]: Out[45]: E[1,1] 2 (4 π 3 p () ( 2 2 m ()) ν + m ()) m () EE1_sol solve(e[1,1].exp(), diff(nu(),)) EE1 EE1_sol[] EE1 ν () E[3,3] E[2,2]*sin(th)^2 Tue E[2,2] 4 π 3 p () + m () 2 2 m () 8 π 3 p () ( m ())( ) + + ( + m ()) ( m ()) 2 ν m () 2 ν 2 m 2 m 2 ν The enegy-momentum consevation equation The enegy-momentum tenso must obey b T b a We fist fom the tenso T b a by aising the fist index of T ab : In [46]: Tu T.up(g, ) pint(tu) Tenso field of type (1,1) on the 4-dimensional diffeentiable manifold M We get the Levi-Civita connection associated with the metic : g In [47]: nabla g.connection() pint(nabla) Levi-Civita connection nabla_g associated with the Loentzian metic g on the 4-dimensional diffeentiable manifold M 8

9 In [48]: Out[48]: nabla.display() Γ t t Γ t t Γ t t Γ Γ θ θ Γ ϕ ϕ Γ θ θ Γ θ θ Γ θ ϕ ϕ Γ ϕ ϕ Γ ϕ θ ϕ Γ ϕ ϕ Γ ϕ ϕ θ ν ν (e (2 ν()) 2 e (2 ν()) ν m()) m m() 2 2 m() + 2 m () ( 2 m ()) sin (θ) cos(θ) sin(θ) 1 cos(θ) sin(θ) 1 cos(θ) sin(θ) We apply nabla to Tu to get the tenso ( T) b ac c T b a (MTW index convention): In [49]: dtu nabla(tu) pint(dtu) Tenso field of type (1,2) on the 4-dimensional diffeentiable manifold M b T b a ( T) b ac b c The divegence is then computed as the tace of the tenso on the fist index (, position ) and last index (, position 2): In [5]: divt dtu.tace(,2) pint(divt) 1-fom on the 4-dimensional diffeentiable manifold M We can also take the tace by using the index notation: In [51]: Out[51]: In [52]: divt dtu['^b_{ab}'] Tue pint(divt) 1-fom on the 4-dimensional diffeentiable manifold M In [53]: Out[53]: divt.display() ( (p () + ρ ()) ν + p ) d 9

10 In [54]: Out[54]: divt[:] [, (p () + ρ ()) ν + p,, ] The only non tivially vanishing components is thus In [55]: divt[1] Out[55]: ν (p () + ρ ()) + p Hence the enegy-momentum consevation equation b T b a educes to In [56]: Out[56]: EE2_sol solve(divt[1].exp(), diff(p(),)) EE2 EE2_sol[] EE2 p () (p () + ρ ()) ν () The TOV system Let us collect all the independent equations obtained so fa: In [57]: fo eq in [EE, EE1, EE2]: show(eq) m () 4 π ν () 2 ρ () 4 π 3 p () + m () 2 2 m () p () (p () + ρ ()) ν () 2. Solving the TOV system In ode to solve the TOV system, we need to specify a fluid equation of state. Fo simplicity, we select a polytopic one: p kρ 2 In [58]: Out[58]: kρ() 2 va('k', domain'eal') p_eos() k*ho()^2 p_eos() We substitute this expession fo p in the TOV equations: In [59]: Out[59]: EE1_ho EE1.substitute_function(p, p_eos) EE1_ho ν () 4 πk 3 ρ () 2 + m () 2 2 m () 1

11 In [6]: EE2_ho EE2.substitute_function(p, p_eos) EE2_ho Out[6]: 2 kρ () ρ () (kρ() 2 + ρ ()) ν () In [61]: Out[61]: EE2_ho (EE2_ho / (2*k*ho())).simplify_full() EE2_ho (kρ () + 1) ρ () 2 k ν () We subsitute the expession of equation EE1_ho fo the ight-hand sides: ν/, in ode to get id of any deivative in In [62]: Out[62]: EE2_ho EE2_ho.subs({diff(nu(),): EE1_ho.hs()}).simplify_full() EE2_ho ρ () 4 πk 2 3 ρ () πk 3 ρ () 2 + km () ρ () + m () 2 (k 2 2 km ()) The system to solve fo (m(), ν(), ρ()) is thus In [63]: fo eq in [EE, EE1_ho, EE2_ho]: show(eq) m () 4 π ν () ρ () 2 ρ () 4 πk 3 ρ () 2 + m () 2 2 m () 4 πk 2 3 ρ () πk 3 ρ () 2 + km () ρ () + m () 2 (k 2 2 km ()) Numeical esolution Let us use a standad 4th-ode Runge-Kutta method: In [64]: desolve_system_k4? We gathe all equations in a list fo the ease of manipulation: In [65]: eqs [EE, EE1_ho, EE2_ho] To get a numeical solution, we have of couse to specify some numeical value fo the EOS constant k k 1/4 ; let us choose : In [66]: k 1/4 hs [eq.hs().subs(kk) fo eq in eqs] hs Out[66]: [ 4 π 2 ρ (), π 3 ρ () 2 + m (), π 3 ρ () π 3 ρ () 2 + m () ρ () + 4 m () 2 2 m () 2 ( 2 2 m ()) ] 11

12 m() ρ() ρ() The integation fo and has to stop as soon as become negative. An easy way to ensue this is to use the Heaviside function (actually SageMath's unit_step; fo some eason, heaviside does not wok fo the RK4 numeical esolution): In [67]: plot(unit_step(x), (x,-4,4), thickness2, aspect_atio1) Out[67]: dm/d dρ/d h(ρ) and to multiply the.h.s. of the and equations by : In [68]: Out[68]: hs[] hs[] * unit_step(ho()) hs[2] hs[2] * unit_step(ho()) hs π 3 ρ () 2 + m () 4 π ρ () u (ρ ()),, [ m () (π 3 ρ () π 3 ρ () 2 + m () ρ () + 4 m ())u (ρ ()) 2 ( 2 2 m ()) ] Let us add an exta equation, fo the pupose of getting the sta's adius as an output of the dr/d 1 integation, via the equation, again multiplied by the Heaviside function of : ρ In [69]: Out[69]: hs.append(1 * unit_step(ho())) hs π 3 ρ () 2 + m () 4 π ρ () u (ρ ()),, [ m () (π 3 ρ () π 3 ρ () 2 + m () ρ () + 4 m ())u (ρ ()), u (ρ ()) 2 ( 2 2 m ()) ] Fo the pupose of the numeical integation via desolve_system_k4, we have to eplace the m() ν() ρ() m 1 ν 1 ρ 1 symbolic functions, and by some symbolic vaiables,, and, say: In [7]: Out[7]: va('m_1 nu_1 ho_1 _1') hs [y.subs({m(): m_1, nu(): nu_1, ho(): ho_1}) fo y in hs] hs [ 4 π2ρ 1 u ( ρ ), π 3 ρ m 1 1, (π 3 ρ π 3 ρ m 1 ρ m 1 )u ( ρ 1 ) 2 m, (2 m 1 2 ) u ( ρ 1 ) ] The integation paametes: 12

13 In [71]: ho_c 1 _min 1e-8 _max 1 np 2 delta_ (_max - _min) / (np-1) The numeical esolution, with the initial conditions set in the paamete ics: ( min, m( min ), ν( min ), ρ( min ), R( min )) ( min,,, ρ c, min ) In [72]: sol desolve_system_k4(hs, vas(m_1, nu_1, ho_1, _1), iva, ics[_min,,, ho_c, _min], end_points(_min, _max), stepdelta_) The solution is etuned as a list, the fist 1 elements of which being: In [73]: Out[73]: sol[:1] [[1. 1 8,,, 1, ], [ , , , , ], [ , , , , ], [ , , , , ], [ , , , , ], [ , , , , ], [ , , , , ], [ , , , , ], [ , , , , ], [ , , , , ]] Each element is of the fom. So to get the list of values, we wite [, m(), ν(), ρ(), R()] (, ρ()) 13

14 In [74]: Out[74]: ho_sol [(s[], s[3]) fo s in sol] ho_sol[:1] [(1. 1 8, 1), ( , ), ( , ), ( , ), ( , ), ( , ), ( , ), ( , ), ( , ), ( , )] We may then use this list to have some plot of list into a gaphical object: ρ(), thanks to the function line, which tansfoms a In [75]: gaph line(ho_sol, axes_labels['$$', '$\ho$'], gidlinestue) gaph Out[75]: m() The solution fo : 14

15 In [76]: m_sol [(s[], s[1]) fo s in sol] m_sol[:1] Out[76]: [(1. 1 8, ), ( , ), ( , ), ( , ), ( , ), ( , ), ( , ), ( , ), ( , ), ( , )] In [77]: gaph line(m_sol, axes_labels['$$', '$m$'], gidlinestue) gaph Out[77]: The solution fo ν() (has to be escaled by adding a constant to ensue ν(+ ) 1): 15

16 In [78]: Out[78]: nu_sol [(s[], s[2]) fo s in sol] nu_sol[:1] [(1. 1 8, ), ( , ), ( , ), ( , ), ( , ), ( , ), ( , ), ( , ), ( , ), ( , )] In [79]: gaph line(nu_sol, axes_labels['$$', '$\tilde{\nu}$'], gidlines Tue) gaph Out[79]: The solution fo R() : 16

17 In [8]: Out[8]: _sol [(s[], s[4]) fo s in sol] line(_sol) The total gavitational mass of the sta is obtained via the last element (index: -1) of the list of (, m()) values: In [81]: M_gav m_sol[-1][1] M_gav Out[81]: Similaly, the stella adius is obtained though the last element of the list of (, R()) values: In [82]: R _sol[-1][1] R Out[82]: The sta's compactness: In [83]: M_gav/R Out[83]: Sequence of stella models Let us pefom a loop on the cental density. Fist we set up a list of values fo ρ c : 17

18 In [84]: ho_c_min.1 ho_c_max 3 n_conf 4 ho_c_list [ho_c_min + i * (ho_c_max-ho_c_min)/(n_conf-1) fo i in ange(n_conf)] ho_c_list Out[84]: [.1, , ,.24, , ,.47, , ,.7, , ,.93, , , 1.16, , , 1.39, , , 1.62, , , 1.85, , , 2.8, , , 2.31, , , 2.54, , , 2.77, , , 3. ] The loop: In [85]: M_list list() R_list list() fo ho_c in ho_c_list: sol desolve_system_k4(hs, vas(m_1, nu_1, ho_1, _1), iva, ics[_min,,, ho_c, _min], end_points(_min, _max), stepdelta_) M_list.append( sol[-1][1] ) R_list.append( sol[-1][4] ) The mass along the sequence: In [86]: M_list Out[86]: [ , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ] The adius along the sequence: 18

19 In [87]: R_list Out[87]: [ , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ] To daw M as a function of ρ c, we use the Python function zip to constuct a list of ( ρ c, M) values: 19

20 In [88]: zip(ho_c_list, M_list) Out[88]: [(.1, ), ( , ), ( , ), (.24, ), ( , ), ( , ), (.47, ), ( , ), ( , ), (.7, ), ( , ), ( , ), (.93, ), ( , ), ( , ), (1.16, ), ( , ), ( , ), (1.39, ), ( , ), ( , ), (1.62, ), ( , ), ( , ), (1.85, ), ( , ), ( , ), (2.8, ), ( , ), ( , ), (2.31, ), ( , ), ( , ), (2.54, ), ( , ), ( , ), (2.77, ), ( , ), ( , ), (3., )] 2

21 In [89]: Out[89]: gaph line(zip(ho_c_list, M_list), axes_labels['$\ho_c$', '$M$'], gidlinestue) gaph M Similaly, we daw as a function of : R In [9]: gaph line(zip(r_list, M_list), axes_labels['$r$', '$M$'], gidlin estue) gaph Out[9]: 21

22 and we save the plot in a pdf file to use it in ou next publication ;-) In [91]: gaph.save('plot_m_r.pdf') 22

d 2 x 0a d d =0. Relative to an arbitrary (accelerating frame) specified by x a = x a (x 0b ), the latter becomes: d 2 x a d 2 + a dx b dx c

d 2 x 0a d d =0. Relative to an arbitrary (accelerating frame) specified by x a = x a (x 0b ), the latter becomes: d 2 x a d 2 + a dx b dx c Chapte 6 Geneal Relativity 6.1 Towads the Einstein equations Thee ae seveal ways of motivating the Einstein equations. The most natual is pehaps though consideations involving the Equivalence Pinciple.

More information

Physics 161 Fall 2011 Extra Credit 2 Investigating Black Holes - Solutions The Following is Worth 50 Points!!!

Physics 161 Fall 2011 Extra Credit 2 Investigating Black Holes - Solutions The Following is Worth 50 Points!!! Physics 161 Fall 011 Exta Cedit Investigating Black Holes - olutions The Following is Woth 50 Points!!! This exta cedit assignment will investigate vaious popeties of black holes that we didn t have time

More information

SageManifolds 1.0. First we set up the notebook to display mathematical objects using LaTeX rendering:

SageManifolds 1.0. First we set up the notebook to display mathematical objects using LaTeX rendering: Kerr spacetime This worksheet demonstrates a few capabilities of SageManifolds (version 1., as included in SageMath 7.5 in computations regarding Kerr spacetime. Click here to download the worksheet file

More information

Appendix A. Appendices. A.1 ɛ ijk and cross products. Vector Operations: δ ij and ɛ ijk

Appendix A. Appendices. A.1 ɛ ijk and cross products. Vector Operations: δ ij and ɛ ijk Appendix A Appendices A1 ɛ and coss poducts A11 Vecto Opeations: δ ij and ɛ These ae some notes on the use of the antisymmetic symbol ɛ fo expessing coss poducts This is an extemely poweful tool fo manipulating

More information

Homework # 3 Solution Key

Homework # 3 Solution Key PHYSICS 631: Geneal Relativity Homewok # 3 Solution Key 1. You e on you hono not to do this one by hand. I ealize you can use a compute o simply look it up. Please don t. In a flat space, the metic in

More information

Kerr-Newman spacetime

Kerr-Newman spacetime Kerr-Newman spacetime This worksheet demonstrates a few capabilities of SageManifolds (version 1.0, as included in SageMath 7.5) in computations regarding Kerr-Newman spacetime. Click here to download

More information

This gives rise to the separable equation dr/r = 2 cot θ dθ which may be integrated to yield r(θ) = R sin 2 θ (3)

This gives rise to the separable equation dr/r = 2 cot θ dθ which may be integrated to yield r(θ) = R sin 2 θ (3) Physics 506 Winte 2008 Homewok Assignment #10 Solutions Textbook poblems: Ch. 12: 12.10, 12.13, 12.16, 12.19 12.10 A chaged paticle finds itself instantaneously in the equatoial plane of the eath s magnetic

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

DonnishJournals

DonnishJournals DonnishJounals 041-1189 Donnish Jounal of Educational Reseach and Reviews. Vol 1(1) pp. 01-017 Novembe, 014. http:///dje Copyight 014 Donnish Jounals Oiginal Reseach Pape Vecto Analysis Using MAXIMA Savaş

More information

GR Calculations in Specific Bases Using Mathematica

GR Calculations in Specific Bases Using Mathematica GR Calculations in Specific Bases Using Mathematica Geoge E. Habovsky MAST Midwest Relativity Meeting, 2015 CIERA, Nowesten Univesity 2 GR Calculations in Specific Bases Using Mathematica.nb What I Will

More information

COORDINATE TRANSFORMATIONS - THE JACOBIAN DETERMINANT

COORDINATE TRANSFORMATIONS - THE JACOBIAN DETERMINANT COORDINATE TRANSFORMATIONS - THE JACOBIAN DETERMINANT Link to: phsicspages home page. To leave a comment o epot an eo, please use the auilia blog. Refeence: d Inveno, Ra, Intoducing Einstein s Relativit

More information

As is natural, our Aerospace Structures will be described in a Euclidean three-dimensional space R 3.

As is natural, our Aerospace Structures will be described in a Euclidean three-dimensional space R 3. Appendix A Vecto Algeba As is natual, ou Aeospace Stuctues will be descibed in a Euclidean thee-dimensional space R 3. A.1 Vectos A vecto is used to epesent quantities that have both magnitude and diection.

More information

Classical Mechanics Homework set 7, due Nov 8th: Solutions

Classical Mechanics Homework set 7, due Nov 8th: Solutions Classical Mechanics Homewok set 7, due Nov 8th: Solutions 1. Do deivation 8.. It has been asked what effect does a total deivative as a function of q i, t have on the Hamiltonian. Thus, lets us begin with

More information

Geometry of the homogeneous and isotropic spaces

Geometry of the homogeneous and isotropic spaces Geomety of the homogeneous and isotopic spaces H. Sonoda Septembe 2000; last evised Octobe 2009 Abstact We summaize the aspects of the geomety of the homogeneous and isotopic spaces which ae most elevant

More information

Conformal transformations + Schwarzschild

Conformal transformations + Schwarzschild Intoduction to Geneal Relativity Solutions of homewok assignments 5 Confomal tansfomations + Schwazschild 1. To pove the identity, let s conside the fom of the Chistoffel symbols in tems of the metic tenso

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

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

= 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

3D-Central Force Problems I

3D-Central Force Problems I 5.73 Lectue #1 1-1 Roadmap 1. define adial momentum 3D-Cental Foce Poblems I Read: C-TDL, pages 643-660 fo next lectue. All -Body, 3-D poblems can be educed to * a -D angula pat that is exactly and univesally

More information

15 Solving the Laplace equation by Fourier method

15 Solving the Laplace equation by Fourier method 5 Solving the Laplace equation by Fouie method I aleady intoduced two o thee dimensional heat equation, when I deived it, ecall that it taes the fom u t = α 2 u + F, (5.) whee u: [0, ) D R, D R is 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

Particle Systems. University of Texas at Austin CS384G - Computer Graphics Fall 2010 Don Fussell

Particle Systems. University of Texas at Austin CS384G - Computer Graphics Fall 2010 Don Fussell Paticle Systems Univesity of Texas at Austin CS384G - Compute Gaphics Fall 2010 Don Fussell Reading Requied: Witkin, Paticle System Dynamics, SIGGRAPH 97 couse notes on Physically Based Modeling. Witkin

More information

Is there a magnification paradox in gravitational lensing?

Is there a magnification paradox in gravitational lensing? Is thee a magnification paadox in gavitational ing? Olaf Wucknitz wucknitz@asto.uni-bonn.de Astophysics semina/colloquium, Potsdam, 6 Novembe 7 Is thee a magnification paadox in gavitational ing? gavitational

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

Lecture 7: Angular Momentum, Hydrogen Atom

Lecture 7: Angular Momentum, Hydrogen Atom Lectue 7: Angula Momentum, Hydogen Atom Vecto Quantization of Angula Momentum and Nomalization of 3D Rigid Roto wavefunctions Conside l, so L 2 2 2. Thus, we have L 2. Thee ae thee possibilities fo L z

More information

Math 2263 Solutions for Spring 2003 Final Exam

Math 2263 Solutions for Spring 2003 Final Exam Math 6 Solutions fo Sping Final Exam ) A staightfowad appoach to finding the tangent plane to a suface at a point ( x, y, z ) would be to expess the cuve as an explicit function z = f ( x, y ), calculate

More information

Vectors, Vector Calculus, and Coordinate Systems

Vectors, Vector Calculus, and Coordinate Systems Apil 5, 997 A Quick Intoduction to Vectos, Vecto Calculus, and Coodinate Systems David A. Randall Depatment of Atmospheic Science Coloado State Univesity Fot Collins, Coloado 80523. Scalas and vectos Any

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

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

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

PROBLEM SET #1 SOLUTIONS by Robert A. DiStasio Jr.

PROBLEM SET #1 SOLUTIONS by Robert A. DiStasio Jr. POBLM S # SOLUIONS by obet A. DiStasio J. Q. he Bon-Oppenheime appoximation is the standad way of appoximating the gound state of a molecula system. Wite down the conditions that detemine the tonic and

More information

Force of gravity and its potential function

Force of gravity and its potential function F. W. Phs0 E:\Ecel files\ch gavitational foce and potential.doc page of 6 0/0/005 8:9 PM Last pinted 0/0/005 8:9:00 PM Foce of gavit and its potential function (.) Let us calculate the potential function

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

KEPLER S LAWS OF PLANETARY MOTION

KEPLER S LAWS OF PLANETARY MOTION EPER S AWS OF PANETARY MOTION 1. Intoduction We ae now in a position to apply what we have leaned about the coss poduct and vecto valued functions to deive eple s aws of planetay motion. These laws wee

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

(read nabla or del) is defined by, k. (9.7.1*)

(read nabla or del) is defined by, k. (9.7.1*) 9.7 Gadient of a scala field. Diectional deivative Some of the vecto fields in applications can be obtained fom scala fields. This is vey advantageous because scala fields can be handled moe easily. The

More information

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

MATH 220: SECOND ORDER CONSTANT COEFFICIENT PDE. We consider second order constant coefficient scalar linear PDEs on R n. These have the form

MATH 220: SECOND ORDER CONSTANT COEFFICIENT PDE. We consider second order constant coefficient scalar linear PDEs on R n. These have the form MATH 220: SECOND ORDER CONSTANT COEFFICIENT PDE ANDRAS VASY We conside second ode constant coefficient scala linea PDEs on R n. These have the fom Lu = f L = a ij xi xj + b i xi + c i whee a ij b i and

More information

Adiabatic evolution of the constants of motion in resonance (I)

Adiabatic evolution of the constants of motion in resonance (I) Adiabatic evolution of the constants of motion in esonance (I) BH Gavitational 重 力力波 waves Takahio Tanaka (YITP, Kyoto univesity) R. Fujita, S. Isoyama, H. Nakano, N. Sago PTEP 013 (013) 6, 063E01 e-pint:

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

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

Vector d is a linear vector function of vector d when the following relationships hold:

Vector d is a linear vector function of vector d when the following relationships hold: Appendix 4 Dyadic Analysis DEFINITION ecto d is a linea vecto function of vecto d when the following elationships hold: d x = a xxd x + a xy d y + a xz d z d y = a yxd x + a yy d y + a yz d z d z = a zxd

More information

AE301 Aerodynamics I UNIT B: Theory of Aerodynamics

AE301 Aerodynamics I UNIT B: Theory of Aerodynamics AE301 Aeodynamics I UNIT B: Theoy of Aeodynamics ROAD MAP... B-1: Mathematics fo Aeodynamics B-2: Flow Field Repesentations B-3: Potential Flow Analysis B-4: Applications of Potential Flow Analysis AE301

More information

Pressure Calculation of a Constant Density Star in the Dynamic Theory of Gravity

Pressure Calculation of a Constant Density Star in the Dynamic Theory of Gravity Pessue Calculation of a Constant Density Sta in the Dynamic Theoy of Gavity Ioannis Iaklis Haanas Depatment of Physics and Astonomy Yok Univesity A Petie Science Building Yok Univesity Toonto Ontaio CANADA

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

AY 7A - Fall 2010 Section Worksheet 2 - Solutions Energy and Kepler s Law

AY 7A - Fall 2010 Section Worksheet 2 - Solutions Energy and Kepler s Law AY 7A - Fall 00 Section Woksheet - Solutions Enegy and Keple s Law. Escape Velocity (a) A planet is obiting aound a sta. What is the total obital enegy of the planet? (i.e. Total Enegy = Potential Enegy

More information

A New Approach to General Relativity

A New Approach to General Relativity Apeion, Vol. 14, No. 3, July 7 7 A New Appoach to Geneal Relativity Ali Rıza Şahin Gaziosmanpaşa, Istanbul Tukey E-mail: aizasahin@gmail.com Hee we pesent a new point of view fo geneal elativity and/o

More information

Quantum theory of angular momentum

Quantum theory of angular momentum Quantum theoy of angula momentum Igo Mazets igo.mazets+e141@tuwien.ac.at (Atominstitut TU Wien, Stadionallee 2, 1020 Wien Time: Fiday, 13:00 14:30 Place: Feihaus, Sem.R. DA gün 06B (exception date 18 Nov.:

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

8 Separation of Variables in Other Coordinate Systems

8 Separation of Variables in Other Coordinate Systems 8 Sepaation of Vaiables in Othe Coodinate Systems Fo the method of sepaation of vaiables to succeed you need to be able to expess the poblem at hand in a coodinate system in which the physical boundaies

More information

The Schwartzchild Geometry

The Schwartzchild Geometry UNIVERSITY OF ROCHESTER The Schwatzchild Geomety Byon Osteweil Decembe 21, 2018 1 INTRODUCTION In ou study of geneal elativity, we ae inteested in the geomety of cuved spacetime in cetain special cases

More information

Introduction to General Relativity 2

Introduction to General Relativity 2 Intoduction to Geneal Relativity 2 Geneal Relativity Diffeential geomety Paallel tanspot How to compute metic? Deviation of geodesics Einstein equations Consequences Tests of Geneal Relativity Sola system

More information

1.2 Differential cross section

1.2 Differential cross section .2. DIFFERENTIAL CROSS SECTION Febuay 9, 205 Lectue VIII.2 Diffeential coss section We found that the solution to the Schodinge equation has the fom e ik x ψ 2π 3/2 fk, k + e ik x and that fk, k = 2 m

More information

Problems with Mannheim s conformal gravity program

Problems with Mannheim s conformal gravity program Poblems with Mannheim s confomal gavity pogam Abstact We show that Mannheim s confomal gavity pogam, whose potential has a tem popotional to 1/ and anothe tem popotional to, does not educe to Newtonian

More information

Stars and Solar System constraints in extended gravity theories

Stars and Solar System constraints in extended gravity theories Stas and Sola System constaints in extended gavity theoies Daniel Sunhede Univ of Jyväskylä / Helsinki Institute of Physics K Kainulainen & D Sunhede in pepaation Intoduction 6D bane-wold with lage exta

More information

Final Review of AerE 243 Class

Final Review of AerE 243 Class Final Review of AeE 4 Class Content of Aeodynamics I I Chapte : Review of Multivaiable Calculus Chapte : Review of Vectos Chapte : Review of Fluid Mechanics Chapte 4: Consevation Equations Chapte 5: Simplifications

More information

arxiv:gr-qc/ v2 8 Jun 2006

arxiv:gr-qc/ v2 8 Jun 2006 On Quantization of the Electical Chage Mass Dmitiy M Palatnik 1 6400 N Sheidan Rd 2605, Chicago, IL 60626 axiv:g-qc/060502v2 8 Jun 2006 Abstact Suggested a non-linea, non-gauge invaiant model of Maxwell

More information

Math Notes on Kepler s first law 1. r(t) kp(t)

Math Notes on Kepler s first law 1. r(t) kp(t) Math 7 - Notes on Keple s fist law Planetay motion and Keple s Laws We conside the motion of a single planet about the sun; fo simplicity, we assign coodinates in R 3 so that the position of the sun is

More information

Transformation of the Navier-Stokes Equations in Curvilinear Coordinate Systems with Maple

Transformation of the Navier-Stokes Equations in Curvilinear Coordinate Systems with Maple Global Jounal of Pue and Applied Mathematics. ISSN 0973-1768 Volume 12, Numbe 4 2016, pp. 3315 3325 Reseach India Publications http://www.ipublication.com/gjpam.htm Tansfomation of the Navie-Stokes Equations

More information

Physics 411 Lecture 34. Sourced Radiation. Lecture 34. Physics 411 Classical Mechanics II

Physics 411 Lecture 34. Sourced Radiation. Lecture 34. Physics 411 Classical Mechanics II Physics 411 Lectue 34 Souced Radiation Lectue 34 Physics 411 Classical Mechanics II Novembe 21st, 2007 We ae eady to move on to the souce side of lineaized waves. The point of this whole section has been

More information

But for simplicity, we ll define significant as the time it takes a star to lose all memory of its original trajectory, i.e.,

But for simplicity, we ll define significant as the time it takes a star to lose all memory of its original trajectory, i.e., Stella elaxation Time [Chandasekha 1960, Pinciples of Stella Dynamics, Chap II] [Ostike & Davidson 1968, Ap.J., 151, 679] Do stas eve collide? Ae inteactions between stas (as opposed to the geneal system

More information

General Relativity Homework 5

General Relativity Homework 5 Geneal Relativity Homewok 5. In the pesence of a cosmological constant, Einstein s Equation is (a) Calculate the gavitational potential point souce with = M 3 (). R µ Rg µ + g µ =GT µ. in the Newtonian

More information

sinγ(h y > ) exp(iωt iqx)dωdq

sinγ(h y > ) exp(iωt iqx)dωdq Lectue 9/28/5 Can we ecove a ay pictue fom the above G fo a membane stip? Such a pictue would be complementay to the above expansion in a seies of integals along the many banches of the dispesion elation.

More information

1D2G - Numerical solution of the neutron diffusion equation

1D2G - Numerical solution of the neutron diffusion equation DG - Numeical solution of the neuton diffusion equation Y. Danon Daft: /6/09 Oveview A simple numeical solution of the neuton diffusion equation in one dimension and two enegy goups was implemented. Both

More information

Chapter 2: Introduction to Implicit Equations

Chapter 2: Introduction to Implicit Equations Habeman MTH 11 Section V: Paametic and Implicit Equations Chapte : Intoduction to Implicit Equations When we descibe cuves on the coodinate plane with algebaic equations, we can define the elationship

More information

arxiv:gr-qc/ v1 29 Jan 1998

arxiv:gr-qc/ v1 29 Jan 1998 Gavitational Analog of the Electomagnetic Poynting Vecto L.M. de Menezes 1 axiv:g-qc/9801095v1 29 Jan 1998 Dept. of Physics and Astonomy, Univesity of Victoia, Victoia, B.C. Canada V8W 3P6 Abstact The

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

Vectors, Vector Calculus, and Coordinate Systems

Vectors, Vector Calculus, and Coordinate Systems ! Revised Apil 11, 2017 1:48 PM! 1 Vectos, Vecto Calculus, and Coodinate Systems David Randall Physical laws and coodinate systems Fo the pesent discussion, we define a coodinate system as a tool fo descibing

More information

The Precession of Mercury s Perihelion

The Precession of Mercury s Perihelion The Pecession of Mecuy s Peihelion Owen Biesel Januay 25, 2008 Contents 1 Intoduction 2 2 The Classical olution 2 3 Classical Calculation of the Peiod 4 4 The Relativistic olution 5 5 Remaks 9 1 1 Intoduction

More information

arxiv:hep-th/ v2 11 Nov 2004

arxiv:hep-th/ v2 11 Nov 2004 Gibbons-Maeda-de Sitte Black Holes Chang Jun Gao 1 Shuang Nan Zhang 1,2,3,4 1 Depatment of Physics and Cente fo Astophysics, Tsinghua Univesity, Beijing 100084, Chinamailaddess) 2 Physics Depatment, Univesity

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

APPENDIX. For the 2 lectures of Claude Cohen-Tannoudji on Atom-Atom Interactions in Ultracold Quantum Gases

APPENDIX. For the 2 lectures of Claude Cohen-Tannoudji on Atom-Atom Interactions in Ultracold Quantum Gases APPENDIX Fo the lectues of Claude Cohen-Tannoudji on Atom-Atom Inteactions in Ultacold Quantum Gases Pupose of this Appendix Demonstate the othonomalization elation(ϕ ϕ = δ k k δ δ )k - The wave function

More information

PHYS 110B - HW #7 Spring 2004, Solutions by David Pace Any referenced equations are from Griffiths Problem statements are paraphrased

PHYS 110B - HW #7 Spring 2004, Solutions by David Pace Any referenced equations are from Griffiths Problem statements are paraphrased PHYS 0B - HW #7 Sping 2004, Solutions by David Pace Any efeenced euations ae fom Giffiths Poblem statements ae paaphased. Poblem 0.3 fom Giffiths A point chage,, moves in a loop of adius a. At time t 0

More information

Math 209 Assignment 9 Solutions

Math 209 Assignment 9 Solutions Math 9 Assignment 9 olutions 1. Evaluate 4y + 1 d whee is the fist octant pat of y x cut out by x + y + z 1. olution We need a paametic epesentation of the suface. (x, z). Now detemine the nomal vecto:

More information

PHYS 705: Classical Mechanics. Small Oscillations

PHYS 705: Classical Mechanics. Small Oscillations PHYS 705: Classical Mechanics Small Oscillations Fomulation of the Poblem Assumptions: V q - A consevative system with depending on position only - The tansfomation equation defining does not dep on time

More information

S7: Classical mechanics problem set 2

S7: Classical mechanics problem set 2 J. Magoian MT 9, boowing fom J. J. Binney s 6 couse S7: Classical mechanics poblem set. Show that if the Hamiltonian is indepdent of a genealized co-odinate q, then the conjugate momentum p is a constant

More information

18.06 Problem Set 4 Solution

18.06 Problem Set 4 Solution 8.6 Poblem Set 4 Solution Total: points Section 3.5. Poblem 2: (Recommended) Find the lagest possible numbe of independent vectos among ) ) ) v = v 4 = v 5 = v 6 = v 2 = v 3 =. Solution (4 points): Since

More information

Mechanics Physics 151

Mechanics Physics 151 Mechanics Physics 151 Lectue 5 Cental Foce Poblem (Chapte 3) What We Did Last Time Intoduced Hamilton s Pinciple Action integal is stationay fo the actual path Deived Lagange s Equations Used calculus

More information

MA557/MA578/CS557. Lecture 14. Prof. Tim Warburton. Spring

MA557/MA578/CS557. Lecture 14. Prof. Tim Warburton. Spring MA557/MA578/CS557 Lectue 4 Sping 3 Pof. Tim Wabuton timwa@math.unm.edu Matlab Notes To ceate a symbolic vaiable (say theta) use the command: theta = sym( theta ); Example manipulation: Matlab cont To evaluate

More information

AH Mechanics Checklist (Unit 2) AH Mechanics Checklist (Unit 2) Circular Motion

AH Mechanics Checklist (Unit 2) AH Mechanics Checklist (Unit 2) Circular Motion AH Mechanics Checklist (Unit ) AH Mechanics Checklist (Unit ) Cicula Motion No. kill Done 1 Know that cicula motion efes to motion in a cicle of constant adius Know that cicula motion is conveniently descibed

More information

KEPLER S LAWS AND PLANETARY ORBITS

KEPLER S LAWS AND PLANETARY ORBITS KEPE S AWS AND PANETAY OBITS 1. Selected popeties of pola coodinates and ellipses Pola coodinates: I take a some what extended view of pola coodinates in that I allow fo a z diection (cylindical coodinates

More information

Supplementary material for the paper Platonic Scattering Cancellation for Bending Waves on a Thin Plate. Abstract

Supplementary material for the paper Platonic Scattering Cancellation for Bending Waves on a Thin Plate. Abstract Supplementay mateial fo the pape Platonic Scatteing Cancellation fo Bending Waves on a Thin Plate M. Fahat, 1 P.-Y. Chen, 2 H. Bağcı, 1 S. Enoch, 3 S. Guenneau, 3 and A. Alù 2 1 Division of Compute, Electical,

More information

Goodness-of-fit for composite hypotheses.

Goodness-of-fit for composite hypotheses. Section 11 Goodness-of-fit fo composite hypotheses. Example. Let us conside a Matlab example. Let us geneate 50 obsevations fom N(1, 2): X=nomnd(1,2,50,1); Then, unning a chi-squaed goodness-of-fit test

More information

AST 121S: The origin and evolution of the Universe. Introduction to Mathematical Handout 1

AST 121S: The origin and evolution of the Universe. Introduction to Mathematical Handout 1 Please ead this fist... AST S: The oigin and evolution of the Univese Intoduction to Mathematical Handout This is an unusually long hand-out and one which uses in places mathematics that you may not be

More information

Dymore User s Manual Two- and three dimensional dynamic inflow models

Dymore User s Manual Two- and three dimensional dynamic inflow models Dymoe Use s Manual Two- and thee dimensional dynamic inflow models Contents 1 Two-dimensional finite-state genealized dynamic wake theoy 1 Thee-dimensional finite-state genealized dynamic wake theoy 1

More information

Tutorial Exercises: Central Forces

Tutorial Exercises: Central Forces Tutoial Execises: Cental Foces. Tuning Points fo the Keple potential (a) Wite down the two fist integals fo cental motion in the Keple potential V () = µm/ using J fo the angula momentum and E fo the total

More information

( ) ( ) Review of Force. Review of Force. r = =... Example 1. What is the dot product for F r. Solution: Example 2 ( )

( ) ( ) Review of Force. Review of Force. r = =... Example 1. What is the dot product for F r. Solution: Example 2 ( ) : PHYS 55 (Pat, Topic ) Eample Solutions p. Review of Foce Eample ( ) ( ) What is the dot poduct fo F =,,3 and G = 4,5,6? F G = F G + F G + F G = 4 +... = 3 z z Phs55 -: Foce Fields Review of Foce Eample

More information

f(k) e p 2 (k) e iax 2 (k a) r 2 e a x a a 2 + k 2 e a2 x 1 2 H(x) ik p (k) 4 r 3 cos Y 2 = 4

f(k) e p 2 (k) e iax 2 (k a) r 2 e a x a a 2 + k 2 e a2 x 1 2 H(x) ik p (k) 4 r 3 cos Y 2 = 4 Fouie tansfom pais: f(x) 1 f(k) e p 2 (k) p e iax 2 (k a) 2 e a x a a 2 + k 2 e a2 x 1 2, a > 0 a p k2 /4a2 e 2 1 H(x) ik p 2 + 2 (k) The fist few Y m Y 0 0 = Y 0 1 = Y ±1 1 = l : 1 Y2 0 = 4 3 ±1 cos Y

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

2 Lecture 2: The Bohr atom (1913) and the Schrödinger equation (1925)

2 Lecture 2: The Bohr atom (1913) and the Schrödinger equation (1925) 1 Lectue 1: The beginnings of quantum physics 1. The Sten-Gelach expeiment. Atomic clocks 3. Planck 1900, blackbody adiation, and E ω 4. Photoelectic effect 5. Electon diffaction though cystals, de Boglie

More information

. Using our polar coordinate conversions, we could write a

. Using our polar coordinate conversions, we could write a 504 Chapte 8 Section 8.4.5 Dot Poduct Now that we can add, sutact, and scale vectos, you might e wondeing whethe we can multiply vectos. It tuns out thee ae two diffeent ways to multiply vectos, one which

More information

Mean Curvature and Shape Operator of Slant Immersions in a Sasakian Space Form

Mean Curvature and Shape Operator of Slant Immersions in a Sasakian Space Form Mean Cuvatue and Shape Opeato of Slant Immesions in a Sasakian Space Fom Muck Main Tipathi, Jean-Sic Kim and Son-Be Kim Abstact Fo submanifolds, in a Sasakian space fom, which ae tangential to the stuctue

More information

4. Kruskal Coordinates and Penrose Diagrams.

4. Kruskal Coordinates and Penrose Diagrams. 4. Kuskal Coodinates and Penose Diagams. 4.1. Removing a coodinate ingulaity at the chwazschild Radius. The chwazschild metic has a singulaity at = whee g 0 and g. Howeve, 00 we have aleady seen that a

More information

F(r) = r f (r) 4.8. Central forces The most interesting problems in classical mechanics are about central forces.

F(r) = r f (r) 4.8. Central forces The most interesting problems in classical mechanics are about central forces. 4.8. Cental foces The most inteesting poblems in classical mechanics ae about cental foces. Definition of a cental foce: (i) the diection of the foce F() is paallel o antipaallel to ; in othe wods, fo

More information

Phys 201A. Homework 6 Solutions. F A and F r. B. According to Newton s second law, ( ) ( )2. j = ( 6.0 m / s 2 )ˆ i ( 10.4m / s 2 )ˆ j.

Phys 201A. Homework 6 Solutions. F A and F r. B. According to Newton s second law, ( ) ( )2. j = ( 6.0 m / s 2 )ˆ i ( 10.4m / s 2 )ˆ j. 7. We denote the two foces F A + F B = ma,sof B = ma F A. (a) In unit vecto notation F A = ( 20.0 N)ˆ i and Theefoe, Phys 201A Homewok 6 Solutions F A and F B. Accoding to Newton s second law, a = [ (

More information

Analytic Evaluation of two-electron Atomic Integrals involving Extended Hylleraas-CI functions with STO basis

Analytic Evaluation of two-electron Atomic Integrals involving Extended Hylleraas-CI functions with STO basis Analytic Evaluation of two-electon Atomic Integals involving Extended Hylleaas-CI functions with STO basis B PADHY (Retd.) Faculty Membe Depatment of Physics, Khalikote (Autonomous) College, Behampu-760001,

More information

An Exact Solution of Navier Stokes Equation

An Exact Solution of Navier Stokes Equation An Exact Solution of Navie Stokes Equation A. Salih Depatment of Aeospace Engineeing Indian Institute of Space Science and Technology, Thiuvananthapuam, Keala, India. July 20 The pincipal difficulty in

More information

Fluid flow in curved geometries: Mathematical Modeling and Applications

Fluid flow in curved geometries: Mathematical Modeling and Applications Fluid flow in cuved geometies: Mathematical Modeling and Applications D. Muhammad Sajid Theoetical Plasma Physics Division PINSTECH, P.O. Niloe, PAEC, Islamabad Mach 01-06, 010 Islamabad, Paistan Pesentation

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

The Strain Compatibility Equations in Polar Coordinates RAWB, Last Update 27/12/07

The Strain Compatibility Equations in Polar Coordinates RAWB, Last Update 27/12/07 The Stain Compatibility Equations in Pola Coodinates RAWB Last Update 7//7 In D thee is just one compatibility equation. In D polas it is (Equ.) whee denotes the enineein shea (twice the tensoial shea)

More information