Vector calculus in Cartesian and spherical coordinates

Size: px
Start display at page:

Download "Vector calculus in Cartesian and spherical coordinates"

Transcription

1 SageManifolds.0 Vecto calculus in Catesian and spheical coodinates This woksheet illustates some featues of SageManifolds (vesion.0, as included in SageMath 7.5) egading vecto calculus in the Euclidean 3-space by means of Catesian and spheical coodinates. Click hee to download the woksheet file (ipynb fomat). To un it, you must stat SageMath with the Jupyte notebook, via the command sage -n jupyte NB: a vesion of SageMath at least equal to 7.5 is equied to un this woksheet: In []: Out[]: vesion() 'SageMath vesion 7.5, Release Date: 07-0-' Euclidean 3-space and Catesian coodinates Fist we set up the notebook to display mathematical objects using LaTeX fomatting: In []: %display latex We then intoduce the Euclidean space as a 3-dimensional diffeentiable manifold: In [3]: M Manifold(3, 'M', stat_index) pint(m) 3-dimensional diffeentiable manifold M (x, y, z) We then intoduce the Catesian coodinates as the chat cat on : M In [4]: cat.<x,y,z> M.chat() pint(cat) cat Chat (M, (x, y, z)) Out[4]: (M, (x, y, z)) Spheical coodinates (, θ, ϕ) We intoduce spheical coodinates as the chat sphe on : M In [5]: sphe.<,th,ph> M.chat(':(0,+oo) th:(0,pi):\theta ph:(0,*pi):\phi ') pint(sphe) sphe Chat (M, (, th, ph)) Out[5]: (M, (, θ, ϕ))

2 SageManifolds.0 Spheical coodinates do not fom a egula coodinate system of the Euclidean space. So declaing that they span means that, stictly speaking, the manifold is not the whole Euclidean space, but the Euclidean space minus some half plane (the azimuthal oigin). Howeve, in this woksheet, this diffeence will not matte. The change of coodinates to chat cat: M (, θ, ϕ) (x, y, z) M is intoduced as a tansition map fom chat sphe In [6]: Out[6]: sphe_to_cat sphe.tansition_map(cat, [*sin(th)*cos(ph), *sin(th )*sin(ph), *cos(th)]) sphe_to_cat.display() x y z cos(ϕ) sin(θ) sin(ϕ) sin(θ) cos(θ) The invese is also set: In [7]: sphe_to_cat.set_invese(sqt(x^+y^+z^), atan(sqt(x^+y^),z), at an(y, x), vebosetue) Check of the invese coodinate tansfomation: th actan(*sin(th), *cos(th)) ph actan(*sin(ph)*sin(th), *cos(ph)*sin(th)) x x y y z z The check that the povided fomulas do coespond to the invese change of coodinates is passed, modulo some lack of simplification in some tigonometical fomulas involving the function actan. In [8]: Out[8]: cat_to_sphe sphe_to_cat.invese() cat_to_sphe.display() θ ϕ x actan( x, z) actan(y, x) The natual vecto fame of spheical coodinates is In [9]: Out[9]: sphe.fame() ( M, (,, θ ϕ )) We shall expand vecto and tenso fields on the othonomal fame spheical coodinates, which is elated to the natual fame means of the following field of automophisms: ( e, e, e 3 ) (/, /θ, /ϕ) associated with displayed above by

3 SageManifolds.0 In [0]: Out[0]: to_othonomal M.automophism_field() to_othonomal[sphe.fame(),,,sphe] to_othonomal[sphe.fame(),,,sphe] / to_othonomal[sphe.fame(),3,3,sphe] /(*sin(th)) to_othonomal.display(sphe.fame(), sphe) d + dθ + dϕ θ sin(θ) ϕ In othe wods, the change-of-basis matix is In []: Out[]: to_othonomal[sphe.fame(),:,sphe] sin(θ) 0 0 We constuct the othonomal fame fom the natual fame of spheical coodinates by this change of basis: In []: es sphe.fame().new_fame(to_othonomal, 'e') pint(es) es Vecto fame (M, (e_,e_,e_3)) Out[]: (M, ( e, e, e 3 )) In [3]: Out[3]: In [4]: Out[4]: In [5]: Out[5]: es[].display(sphe.fame(), sphe) e es[].display(sphe.fame(), sphe) e θ es[3].display(sphe.fame(), sphe) e 3 sin(θ) ϕ If we do not specify the fame and coodinates fo the display, we get it in tems of the default ones (i.e. Catesian fame and Catesian coodinates): In [6]: es[].display() Out[6]: e x y + ( x ) x ( x ) z + ( x ) z y 3

4 SageManifolds.0 In [7]: es[].display() Out[7]: e xz yz + ( x x ) x ( x x ) x + ( x ) z y In [8]: es[3].display() Out[8]: e 3 y ( x ) x x + ( x ) y By constuction, the change of fame (/, /θ, /ϕ) ( e, e, e 3 ) change of fame (/x, /y, /z) ( e, e, e 3 ) by composition of (/x, /y, /z) (/, /θ, /ϕ) (/, /θ, /ϕ) ( e, e, e 3 ) is known. We fom the with : In [9]: Out[9]: M.set_change_of_fame(cat.fame(), es, M.change_of_fame(sphe.fame(), es) * M.change_o f_fame(cat.fame(), sphe.fame()), compute_invesefalse) M.change_of_fame(cat.fame(), es)[:, sphe] cos(ϕ) sin(θ) sin(ϕ) sin(θ) cos(θ) cos(ϕ) cos(θ) cos(θ) sin(ϕ) sin(θ) sin(ϕ) cos(ϕ) 0 Similaly, we fom the invese change of fame as: In [0]: Out[0]: M.set_change_of_fame(es, cat.fame(), M.change_of_fame(sphe.fame(), cat.fame()) * M.change_of_fame(es, sphe.fame()), compute_invesefalse) M.change_of_fame(es, cat.fame())[:, sphe] cos(ϕ) sin(θ) cos(ϕ) cos(θ) sin(ϕ) sin(ϕ) sin(θ) cos(θ) sin(ϕ) cos(ϕ) cos(θ) sin(θ) 0 At this stage, the manifold (use) atlas is In []: Out[]: M.atlas() [(M, (x, y, z)), (M, (, θ, ϕ))] The default chat is the fist one intoduced on the manifold (it can be changed by means of the function M.set_default_chat): In []: Out[]: M.default_chat() (M, (x, y, z)) The following vecto fames have been intoduced on the manifold: 4

5 SageManifolds.0 In [3]: Out[3]: M.fames() [( M, (,, )), ( M, (,, x y )), (M, ( e z θ, e ϕ, e 3 )) ] The default fame is the fist one intoduced on the manifold (it can be changed by means of the function M.set_default_fame): In [4]: Out[4]: M.default_fame() ( M, (, x, y z )) The following changes of fame have been defined: In [5]: Out[5]: M.changes_of_fame() {(( M, (,, )), (M, ( e x y, e z, e 3 )) ) : Field of tangent-space automophisms on the 3-dimensional diffeentiable manifold M ( (M, (,, )), ( M, (, e e e 3 x, y z ))) : Field of tangent-space automophisms on the 3-dimensional diffeentiable manifold M (( M, (,, )), ( M, x y (, z, θ ϕ ))) : Field of tangent-space automophisms on the 3-dimensional diffeentiable manifold M (( M, (,, )), ( M, θ (, ϕ x, y z ))) : Field of tangent-space automophisms on the 3-dimensional diffeentiable manifold M ( (M, (,, )), ( M, (, e e e 3, θ ϕ ))) : Field of tangent-space automophisms on the 3-dimensional diffeentiable manifold M (( M, (,, )), (M, ( e θ, e ϕ, e 3 )) ) : Field of tangent-space automophisms on the 3-dimensional diffeentiable manifold M } Vecto field defined in tems of its Catesian components We define the vecto field Catesian fame: U in tems of its components with espect to the default fame, i.e. the In [6]: U M.vecto_field(name'U') U[:] [function('u_x')(x,y,z), function('u_y')(x,y,z), function('u_z') (x,y,z)] U.display() Out[6]: U Ux (x, y, z) + U y (x, y, z) + U z (x, y, z) x y z 5

6 SageManifolds.0 We can ask fo its components in tems of the spheical othonomal fame: In [7]: Out[7]: U.display(es) x U x (x, y, z) + y U y (x, y, z) + z U z (x, y, z) U ( x ) x U z (x, y, z) + y U z (x, y, z) (x U x (x, y, z) + y U y (x, y, z))z + ( x x ) + ( y U x (x, y, z) x U y (x, y, z) x ) e 3 e e In [8]: Out[8]: U U.display_comp(es) U U 3 x U x (x,y,z)+y U y (x,y,z)+z U z (x,y,z) x + y + z x U z (x,y,z)+ y U z (x,y,z)(x U x (x,y,z)+y U y (x,y,z))z y U x(x,y,z)x U y (x,y,z) x + y x + y + z x + y The above components ae displayed in tems of the default chat (Catesian coodinates). If we want them in tems of spheical coodinates, we have to specify it, by setting the second agument of the function display to sphe: In [9]: Out[9]: U.display(es, sphe) U ( ( cos(ϕ) sin(θ), sin(ϕ) sin(θ), cos(θ)) cos(ϕ) sin(θ) U x + ( cos(ϕ) sin(θ), sin(ϕ) sin(θ), cos(θ)) sin(ϕ) sin(θ) U y + U z ( cos(ϕ) sin(θ), sin(ϕ) sin(θ), cos(θ)) cos(θ)) e + ( U x ( cos(ϕ) sin(θ), sin(ϕ) sin(θ), cos(θ)) cos(ϕ) cos(θ) + U y ( cos(ϕ) sin(θ), sin(ϕ) sin(θ), cos(θ)) cos(θ) sin(ϕ) U z ( cos(ϕ) sin(θ), sin(ϕ) sin(θ), cos(θ)) sin(θ)) e + ( U y ( cos(ϕ) sin(θ), sin(ϕ) sin(θ), cos(θ)) cos(ϕ) U x ( cos(ϕ) sin(θ), sin(ϕ) sin(θ), cos(θ)) sin(ϕ)) e 3 In [30]: Out[30]: U U.display_comp(es, sphe) U U 3 U x ( cos(ϕ) sin(θ), sin(ϕ) sin(θ), cos(θ)) cos(ϕ) sin(θ) + U y ( cos(ϕ) sin(θ), sin(ϕ) sin(θ), cos(θ)) sin(ϕ) sin(θ) + U z ( cos(ϕ) sin(θ), sin(ϕ) sin(θ), cos(θ)) cos(θ) U x ( cos(ϕ) sin(θ), sin(ϕ) sin(θ), cos(θ)) cos(ϕ) cos(θ) + U y ( cos(ϕ) sin(θ), sin(ϕ) sin(θ), cos(θ)) cos(θ) sin(ϕ) U z ( cos(ϕ) sin(θ), sin(ϕ) sin(θ), cos(θ)) sin(θ) ( cos(ϕ) sin(θ), sin(ϕ) sin(θ), cos(θ)) cos(ϕ) U y U x ( cos(ϕ) sin(θ), sin(ϕ) sin(θ), cos(θ)) sin(ϕ) 6

7 SageManifolds.0 We may also ask fo the components of U w..t. the natual fame of spheical coodinates: In [3]: Out[3]: U.display(sphe.fame()) x U x (x, y, z) + y U y (x, y, z) + z U z (x, y, z) U ( x ) ( x U z (x, y, z) + y U z (x, y, z) (x U x (x, y, z) + y U y (x, y, z))z) x + ( x 4 + x y + y 4 + ( x + y ) z ) θ y U x (x, y, z) x U y (x, y, z) + ( x + y ) ϕ In [3]: Out[3]: U.display(sphe.fame(), sphe) U ( U x ( cos(ϕ) sin(θ), sin(ϕ) sin(θ), cos(θ)) cos(ϕ) sin(θ) + U y ( cos(ϕ) sin(θ), sin(ϕ) sin(θ), cos(θ)) sin(ϕ) sin(θ) + U z ( cos(ϕ) sin(θ), sin(ϕ) sin(θ), cos(θ)) cos(θ)) U x ( cos(ϕ) sin(θ), sin(ϕ) sin(θ), cos(θ)) cos(ϕ) cos(θ) + U y ( cos(ϕ) sin(θ), sin(ϕ) sin(θ), cos(θ)) cos(θ) sin(ϕ) U + z ( cos(ϕ) sin(θ), sin(ϕ) sin(θ), cos(θ)) sin(θ) + U y U x ( cos(ϕ) sin(θ), sin(ϕ) sin(θ), cos(θ)) cos(ϕ) ( cos(ϕ) sin(θ), sin(ϕ) sin(θ), cos(θ)) sin(ϕ) sin(θ) ϕ θ Vecto field defined in tems of its spheical components Let us conside a vecto field ( e, e, e 3 ) fame es : V defined by its components with espect to the othonomal spheical In [33]: V M.vecto_field(name'V') V[es,:,sphe] [function('v_')(,th,ph), function('v_')(,th,ph), fu nction('v_3')(,th,ph)] V.display(es, sphe) Out[33]: V V (, θ, ϕ) e + V (, θ, ϕ) e + V 3 (, θ, ϕ) e 3 We may ask fo the components of this vecto field with espect to the Catesian fame (fist agument cat.fame()), each component being expessed in tems of spheical coodinates (second agument sphe): 7

8 SageManifolds.0 In [34]: Out[34]: In [35]: Out[35]: V.display(cat.fame(), sphe) V ( V (, θ, ϕ) cos(ϕ) cos(θ) + V (, θ, ϕ) cos(ϕ) sin(θ) V 3 (, θ, ϕ) sin(ϕ)) x + ( V (, θ, ϕ) cos(θ) sin(ϕ) + V (, θ, ϕ) sin(ϕ) sin(θ) + V 3 (, θ, ϕ) cos(ϕ)) y + ( V (, θ, ϕ) cos(θ) V (, θ, ϕ) sin(θ)) z V.display_comp(cat.fame(), sphe) V x V y V z V (, θ, ϕ) cos(ϕ) cos(θ) + V (, θ, ϕ) cos(ϕ) sin(θ) V 3 (, θ, ϕ) sin(ϕ) V (, θ, ϕ) cos(θ) sin(ϕ) + V (, θ, ϕ) sin(ϕ) sin(θ) + V 3 (, θ, ϕ) cos(ϕ) V (, θ, ϕ) cos(θ) V (, θ, ϕ) sin(θ) Euclidean metic The standad Euclidean metic is intoduced as a Riemannian metic on diag(,, ) espect to the Catesian fame ae : M, whose components with In [36]: Out[36]: g M.iemannian_metic('g') g[,], g[,], g[3,3],, g.display() g dx dx + dy dy + dz dz The components of g with espect to the spheical coodinates ae then: In [37]: g.display(sphe.fame(), sphe) Out[37]: g d d + dθ dθ + sin (θ) dϕ dϕ ( e, e, e 3 ) diag(,, ) : Since es is an othonomal fame, the components of with espect to it ae g In [38]: g.display(es, sphe) Out[38]: g e e + e e + e 3 e 3 The covaiant deivative opeato is intoduced as the (Levi-Civita) connection associated with : g In [39]: nabla g.connection() pint(nabla) nabla Levi-Civita connection nabla_g associated with the Riemannian metic g on the 3-dimensional diffeentiable manifold M Out[39]: g The connection coefficient with espect to the natual fame of spheical coodinates (Chistoffel symbols) ae: 8

9 SageManifolds.0 In [40]: Out[40]: nabla.display(sphe.fame(), sphe) Γ θ θ Γ ϕ ϕ Γ θ θ Γ θ θ Γ θ ϕ ϕ Γ ϕ ϕ Γ ϕ θ ϕ Γ ϕ ϕ Γ ϕ ϕ θ sin (θ) cos(θ) sin(θ) cos(θ) sin(θ) cos(θ) sin(θ) while those with espect to the othonomal spheical fame ae: In [4]: nabla.display(es, sphe) Out[4]: Γ Γ 3 3 Γ Γ 3 3 Γ 3 3 Γ 3 3 cos(θ) sin(θ) cos(θ) sin(θ) The covaiant deivative of U is In [4]: nabu nabla(u) pint(nabu) Tenso field nabla_g(u) of type (,) on the 3-dimensional diffeentiab le manifold M In [43]: Out[43]: nabu.display() U x U x U x U y g U dx + dy + dz + dx x x y x z x x y U y U y U z U z U z + dy + dz + dx + dy + y y z y x z y z z z dz while the covaiant deivative of V is In [44]: nabv nabla(v) pint(nabv) Tenso field nabla_g(v) of type (,) on the 3-dimensional diffeentiab le manifold M 9

10 SageManifolds.0 In [45]: Out[45]: nabv.display(es, sphe) g V V θ V V + e (, θ, ϕ) e ( e ) e V V (, θ, ϕ) sin(θ) + 3 ϕ + sin(θ) e e 3 V e e V V (, θ, ϕ) + V V (, θ, ϕ) cos(θ) θ + e e + 3 ϕ ( ) sin(θ) e e 3 V 3 V e 3 e θ e 3 e V V (, θ, ϕ) cos(θ) + (, θ, ϕ) sin(θ) + + V 3 ϕ sin(θ) e 3 e 3 In [ ]: 0

(a, b) x y r. For this problem, is a point in the - coordinate plane and is a positive number.

(a, b) x y r. For this problem, is a point in the - coordinate plane and is a positive number. Illustative G-C Simila cicles Alignments to Content Standads: G-C.A. Task (a, b) x y Fo this poblem, is a point in the - coodinate plane and is a positive numbe. a. Using a tanslation and a dilation, show

More information

ME 210 Applied Mathematics for Mechanical Engineers

ME 210 Applied Mathematics for Mechanical Engineers Note that the unit vectos, T, N and B ae thee unit vectos pependicula to each othe whose diections ae dictated by the local behavio of the cuve C at its point P. They fom a moving ight handed vecto fame

More information

Tufts University Math 13 Department of Mathematics November 14, :00 noon to 1:20 pm

Tufts University Math 13 Department of Mathematics November 14, :00 noon to 1:20 pm Tufts Univesit Math 3 Depatment of Mathematics Novembe, Eam : noon to : pm Instuctions: No calculatos, notes o books ae allowed. Unless othewise stated, ou must show all wok to eceive full cedit. Simplif

More information

ISyE 4256 Industrial Robotic Applications

ISyE 4256 Industrial Robotic Applications ISyE 456 Industial Robotic Applications Quiz # Oct. 9, 998 Name This is a closed book, closed notes exam. Show wok fo poblem questions ) ( pts) Please cicle one choice fo each item. a) In an application,

More information

Curl, Divergence, and Gradient in Cylindrical and Spherical Coordinate Systems

Curl, Divergence, and Gradient in Cylindrical and Spherical Coordinate Systems APPENDIX B Cul, Divegence, and Gadient in Cylindical and Spheical Coodinate Systems In Sections 3., 3.4, and 6., we intoduced the cul, divegence, and gadient, espectively, and deived the expessions o them

More information

Prof. Feng Liu. Fall /17/2016

Prof. Feng Liu. Fall /17/2016 Pof. Feng Liu Fall 26 http://www.cs.pdx.edu/~fliu/couses/cs447/ /7/26 Last time Compositing NPR 3D Gaphics Toolkits Tansfomations 2 Today 3D Tansfomations The Viewing Pipeline Mid-tem: in class, Nov. 2

More information

SageManifolds tutorial

SageManifolds tutorial SageManifolds tutorial This worksheet provides a short introduction to SageManifolds (version 1.0, as included in SageMath 7.5). Click here to download the worksheet file (ipynb format). To run it, you

More information

= dv 3V (r + a 1) 3 r 3 f(r) = 1. = ( (r + r 2

= dv 3V (r + a 1) 3 r 3 f(r) = 1. = ( (r + r 2 Random Waypoint Model in n-dimensional Space Esa Hyytiä and Joma Vitamo Netwoking Laboatoy, Helsinki Univesity of Technology, Finland Abstact The andom waypoint model (RWP) is one of the most widely used

More information

Integration using Transformations in Polar, Cylindrical, and Spherical Coordinates

Integration using Transformations in Polar, Cylindrical, and Spherical Coordinates ections 15.4 Integration using Transformations in Polar, Cylindrical, and pherical Coordinates Cylindrical Coordinates pherical Coordinates MATH 127 (ection 15.5) Applications of Multiple Integrals The

More information

Elliptic Generation Systems

Elliptic Generation Systems 4 Elliptic Geneation Systems Stefan P. Spekeijse 4.1 Intoduction 4.1 Intoduction 4.2 Two-Dimensional Gid Geneation Hamonic Maps, Gid Contol Maps, and Poisson Systems Discetization and Solution Method Constuction

More information

Fifth Wheel Modelling and Testing

Fifth Wheel Modelling and Testing Fifth heel Modelling and Testing en Masoy Mechanical Engineeing Depatment Floida Atlantic Univesity Boca aton, FL 4 Lois Malaptias IFMA Institut Fancais De Mechanique Advancee ampus De lemont Feand Les

More information

Section Parametrized Surfaces and Surface Integrals. (I) Parametrizing Surfaces (II) Surface Area (III) Scalar Surface Integrals

Section Parametrized Surfaces and Surface Integrals. (I) Parametrizing Surfaces (II) Surface Area (III) Scalar Surface Integrals Section 16.4 Parametrized Surfaces and Surface Integrals (I) Parametrizing Surfaces (II) Surface Area (III) Scalar Surface Integrals MATH 127 (Section 16.4) Parametrized Surfaces and Surface Integrals

More information

Massachusetts Institute of Technology Department of Mechanical Engineering

Massachusetts Institute of Technology Department of Mechanical Engineering cm cm Poblem Massachusetts Institute of echnolog Depatment of Mechanical Engineeing. Intoduction to obotics Sample Poblems and Solutions fo the Mid-em Exam Figue shows a obotic vehicle having two poweed

More information

A Mathematical Implementation of a Global Human Walking Model with Real-Time Kinematic Personification by Boulic, Thalmann and Thalmann.

A Mathematical Implementation of a Global Human Walking Model with Real-Time Kinematic Personification by Boulic, Thalmann and Thalmann. A Mathematical Implementation of a Global Human Walking Model with Real-Time Kinematic Pesonification by Boulic, Thalmann and Thalmann. Mashall Badley National Cente fo Physical Acoustics Univesity of

More information

MATH 010B - Spring 2018 Worked Problems - Section 6.2. ze x2 +y 2

MATH 010B - Spring 2018 Worked Problems - Section 6.2. ze x2 +y 2 MATH B - Spring 8 orked Problems - Section 6.. Compute the following double integral x +y 9 z 3 ze x +y dv Solution: Here, we can t hope to integrate this directly in Cartesian coordinates, since the the

More information

Introduction to Medical Imaging. Cone-Beam CT. Introduction. Available cone-beam reconstruction methods: Our discussion:

Introduction to Medical Imaging. Cone-Beam CT. Introduction. Available cone-beam reconstruction methods: Our discussion: Intoduction Intoduction to Medical Imaging Cone-Beam CT Klaus Muelle Available cone-beam econstuction methods: exact appoximate Ou discussion: exact (now) appoximate (next) The Radon tansfom and its invese

More information

Coordinate Systems. Ioannis Rekleitis

Coordinate Systems. Ioannis Rekleitis Coodinate Systems Ioannis ekleitis Position epesentation Position epesentation is: P p p p x y z P CS-417 Intoduction to obotics and Intelligent Systems Oientation epesentations Descibes the otation of

More information

5. Geometric Transformations and Projections

5. Geometric Transformations and Projections 5. Geometic Tansfomations and ojections 5. Tanslations and Rotations a) Tanslation d d d d d d d d b) Scaling s s s s c) Reflection (about - - lane) d) Rotation about Ais ( ) ( ) CCW 5.. Homogeneous Repesentation

More information

CS-184: Computer Graphics. Today. Lecture #5: 3D Transformations and Rotations. Transformations in 3D Rotations

CS-184: Computer Graphics. Today. Lecture #5: 3D Transformations and Rotations. Transformations in 3D Rotations CS-184: Compute Gaphics Lectue #5: 3D Tansfomations and Rotations Pof. James O Bien Univesity of Califonia, Bekeley V2009-F-05-1.0 Today Tansfomations in 3D Rotations Matices Eule angles Eponential maps

More information

Control of Mobile Robots

Control of Mobile Robots Conto of Mobie obots efeences: -. Siegwat and I.. Noubakhsh, Intoduction to Autonomous Mobie obots, MIT, 004 (Chaps.,3. - S. G. Tzafestas, Intoduction to Mobie obot Conto, Esevie, 013. 1 Tpes of Mobie

More information

Electric Field of charged hollow and solid Spheres

Electric Field of charged hollow and solid Spheres lectic Field of chaged hollow and solid Sphees Fits F.M. de Mul -field of a chaged hollow o solid sphee 1 esentations: lectomagnetism: Histoy lectomagnetism: lect. topics lectomagnetism: Magn. topics lectomagnetism:

More information

Image Enhancement in the Spatial Domain. Spatial Domain

Image Enhancement in the Spatial Domain. Spatial Domain 8-- Spatial Domain Image Enhancement in the Spatial Domain What is spatial domain The space whee all pixels fom an image In spatial domain we can epesent an image by f( whee x and y ae coodinates along

More information

CONJUGATE SU(r)-CONNECTIONS AND HOLONOMY GROUPS

CONJUGATE SU(r)-CONNECTIONS AND HOLONOMY GROUPS PROCEEDINGS OF THE AMERICAN MATHEMATICAL SOCIETY Volume 18, Numbe 3, Pages 865 871 S 000-9939(99)05457-X Aticle electonically published on Septembe 9, 1999 CONJUGATE SU()-CONNECTIONS AND HOLONOMY GROUPS

More information

Gravitational Shift for Beginners

Gravitational Shift for Beginners Gavitational Shift fo Beginnes This pape, which I wote in 26, fomulates the equations fo gavitational shifts fom the elativistic famewok of special elativity. Fist I deive the fomulas fo the gavitational

More information

1 Double Integrals over Rectangular Regions

1 Double Integrals over Rectangular Regions Contents ouble Integrals over Rectangular Regions ouble Integrals Over General Regions 7. Introduction.................................... 7. Areas of General Regions............................. 9.3 Region

More information

CALCULUS III Surface Integrals. Paul Dawkins

CALCULUS III Surface Integrals. Paul Dawkins CALCULU III uface Integals Paul awkins Table of Contents Peface... ii uface Integals... 3 Intoduction... 3 Paametic ufaces... 4 uface Integals... uface Integals of Vecto Fields... 9 tokes Theoem... 9 ivegence

More information

Curves: We always parameterize a curve with a single variable, for example r(t) =

Curves: We always parameterize a curve with a single variable, for example r(t) = Final Exam Topics hapters 16 and 17 In a very broad sense, the two major topics of this exam will be line and surface integrals. Both of these have versions for scalar functions and vector fields, and

More information

A Shape-preserving Affine Takagi-Sugeno Model Based on a Piecewise Constant Nonuniform Fuzzification Transform

A Shape-preserving Affine Takagi-Sugeno Model Based on a Piecewise Constant Nonuniform Fuzzification Transform A Shape-peseving Affine Takagi-Sugeno Model Based on a Piecewise Constant Nonunifom Fuzzification Tansfom Felipe Fenández, Julio Gutiéez, Juan Calos Cespo and Gacián Tiviño Dep. Tecnología Fotónica, Facultad

More information

1. Suppose that the equation F (x, y, z) = 0 implicitly defines each of the three variables x, y, and z as functions of the other two:

1. Suppose that the equation F (x, y, z) = 0 implicitly defines each of the three variables x, y, and z as functions of the other two: Final Solutions. Suppose that the equation F (x, y, z) implicitly defines each of the three variables x, y, and z as functions of the other two: z f(x, y), y g(x, z), x h(y, z). If F is differentiable

More information

Triple Integrals. Be able to set up and evaluate triple integrals over rectangular boxes.

Triple Integrals. Be able to set up and evaluate triple integrals over rectangular boxes. SUGGESTED REFERENCE MATERIAL: Triple Integrals As you work through the problems listed below, you should reference Chapters 4.5 & 4.6 of the recommended textbook (or the equivalent chapter in your alternative

More information

17/5/2009. Introduction

17/5/2009. Introduction 7/5/9 Steeo Imaging Intoduction Eample of Human Vision Peception of Depth fom Left and ight eye images Diffeence in elative position of object in left and ight eyes. Depth infomation in the views?? 7/5/9

More information

Chapter 15 Notes, Stewart 7e

Chapter 15 Notes, Stewart 7e Contents 15.2 Iterated Integrals..................................... 2 15.3 Double Integrals over General Regions......................... 5 15.4 Double Integrals in Polar Coordinates..........................

More information

Triple Integrals. MATH 311, Calculus III. J. Robert Buchanan. Fall Department of Mathematics. J. Robert Buchanan Triple Integrals

Triple Integrals. MATH 311, Calculus III. J. Robert Buchanan. Fall Department of Mathematics. J. Robert Buchanan Triple Integrals Triple Integrals MATH 311, Calculus III J. Robert Buchanan Department of Mathematics Fall 211 Riemann Sum Approach Suppose we wish to integrate w f (x, y, z), a continuous function, on the box-shaped region

More information

MAC2313 Test 3 A E g(x, y, z) dy dx dz

MAC2313 Test 3 A E g(x, y, z) dy dx dz MAC2313 Test 3 A (5 pts) 1. If the function g(x, y, z) is integrated over the cylindrical solid bounded by x 2 + y 2 = 3, z = 1, and z = 7, the correct integral in Cartesian coordinates is given by: A.

More information

2D Transformations. Why Transformations. Translation 4/17/2009

2D Transformations. Why Transformations. Translation 4/17/2009 4/7/9 D Tansfomations Wh Tansfomations Coodinate sstem tansfomations Placing objects in the wold Move/animate the camea fo navigation Dawing hieachical chaactes Animation Tanslation + d 5,4 + d,3 d 4,

More information

Calculus III. Math 233 Spring In-term exam April 11th. Suggested solutions

Calculus III. Math 233 Spring In-term exam April 11th. Suggested solutions Calculus III Math Spring 7 In-term exam April th. Suggested solutions This exam contains sixteen problems numbered through 6. Problems 5 are multiple choice problems, which each count 5% of your total

More information

4.2. Co-terminal and Related Angles. Investigate

4.2. Co-terminal and Related Angles. Investigate .2 Co-teminal and Related Angles Tigonometic atios can be used to model quantities such as

More information

3.1 Expressions and Strings

3.1 Expressions and Strings . A Few Fist Steps 016-04-10 $Vesion 10.0 fo Mac OS X x86 (64- bit) (Septembe 10, 014).1 Expessions and Stings Expessions ae symbols o numbes o othe mathematical entities, which ae woked on in the kenel

More information

Color Correction Using 3D Multiview Geometry

Color Correction Using 3D Multiview Geometry Colo Coection Using 3D Multiview Geomety Dong-Won Shin and Yo-Sung Ho Gwangju Institute of Science and Technology (GIST) 13 Cheomdan-gwagio, Buk-ku, Gwangju 500-71, Republic of Koea ABSTRACT Recently,

More information

Math Boot Camp: Coordinate Systems

Math Boot Camp: Coordinate Systems Math Boot Camp: Coordinate Systems You can skip this boot camp if you can answer the following question: Staying on a sphere of radius R, what is the shortest distance between the point (0, 0, R) on the

More information

Directional Stiffness of Electronic Component Lead

Directional Stiffness of Electronic Component Lead Diectional Stiffness of Electonic Component Lead Chang H. Kim Califonia State Univesit, Long Beach Depatment of Mechanical and Aeospace Engineeing 150 Bellflowe Boulevad Long Beach, CA 90840-830, USA Abstact

More information

FACE VECTORS OF FLAG COMPLEXES

FACE VECTORS OF FLAG COMPLEXES FACE VECTORS OF FLAG COMPLEXES ANDY FROHMADER Abstact. A conjectue of Kalai and Eckhoff that the face vecto of an abitay flag complex is also the face vecto of some paticula balanced complex is veified.

More information

Statistics of Images. Ioannis Rekleitis

Statistics of Images. Ioannis Rekleitis Statistics of Images Ioannis Rekleitis Some Basic Intensity Tansfoma2on Func2ons Thesholding Logistic function Log tansfomation Powe-law (Gamma coection) Piecewise-linea tansfomation Histogam pocessing

More information

Parametric Scattering Models for Bistatic Synthetic Aperture Radar

Parametric Scattering Models for Bistatic Synthetic Aperture Radar Paametic Scatteing Models fo Bistatic Synthetic Apetue Rada Julie Ann Jackson Student Membe, Bian D. Rigling Membe, Randolph L. Moses Senio Membe The Ohio State Univesity, Dept. of Electical and Compute

More information

Math Exam III Review

Math Exam III Review Math 213 - Exam III Review Peter A. Perry University of Kentucky April 10, 2019 Homework Exam III is tonight at 5 PM Exam III will cover 15.1 15.3, 15.6 15.9, 16.1 16.2, and identifying conservative vector

More information

Survey of Various Image Enhancement Techniques in Spatial Domain Using MATLAB

Survey of Various Image Enhancement Techniques in Spatial Domain Using MATLAB Suvey of Vaious Image Enhancement Techniques in Spatial Domain Using MATLAB Shailenda Singh Negi M.Tech Schola G. B. Pant Engineeing College, Paui Gahwal Uttaahand, India- 46194 ABSTRACT Image Enhancement

More information

A NOVEL VOLUME CT WITH X-RAY ON A TROUGH-LIKE SURFACE AND POINT DETECTORS ON CIRCLE-PLUS-ARC CURVE

A NOVEL VOLUME CT WITH X-RAY ON A TROUGH-LIKE SURFACE AND POINT DETECTORS ON CIRCLE-PLUS-ARC CURVE A NOVEL VOLUME CT WITH X-RAY ON A TROUGH-LIKE SURFACE AND POINT DETECTORS ON CIRCLE-PLUS-ARC CURVE H Xu, and TG Zhuang Depatment of Biomedical Engineeing, Shanghai Jiaotong Univesity, Shanghai, P R China

More information

RANDOM IRREGULAR BLOCK-HIERARCHICAL NETWORKS: ALGORITHMS FOR COMPUTATION OF MAIN PROPERTIES

RANDOM IRREGULAR BLOCK-HIERARCHICAL NETWORKS: ALGORITHMS FOR COMPUTATION OF MAIN PROPERTIES RANDOM IRREGULAR BLOCK-HIERARCHICAL NETWORKS: ALGORITHMS FOR COMPUTATION OF MAIN PROPERTIES Svetlana Avetisyan Mikayel Samvelyan* Matun Kaapetyan Yeevan State Univesity Abstact In this pape, the class

More information

A modal estimation based multitype sensor placement method

A modal estimation based multitype sensor placement method A modal estimation based multitype senso placement method *Xue-Yang Pei 1), Ting-Hua Yi 2) and Hong-Nan Li 3) 1),)2),3) School of Civil Engineeing, Dalian Univesity of Technology, Dalian 116023, China;

More information

MATH 2400, Analytic Geometry and Calculus 3

MATH 2400, Analytic Geometry and Calculus 3 MATH 2400, Analytic Geometry and Calculus 3 List of important Definitions and Theorems 1 Foundations Definition 1. By a function f one understands a mathematical object consisting of (i) a set X, called

More information

On Error Estimation in Runge-Kutta Methods

On Error Estimation in Runge-Kutta Methods Leonado Jounal of Sciences ISSN 1583-0233 Issue 18, Januay-June 2011 p. 1-10 On Eo Estimation in Runge-Kutta Methods Ochoche ABRAHAM 1,*, Gbolahan BOLARIN 2 1 Depatment of Infomation Technology, 2 Depatment

More information

EYE DIRECTION BY STEREO IMAGE PROCESSING USING CORNEAL REFLECTION ON AN IRIS

EYE DIRECTION BY STEREO IMAGE PROCESSING USING CORNEAL REFLECTION ON AN IRIS EYE DIRECTION BY STEREO IMAGE PROCESSING USING CORNEAL REFLECTION ON AN IRIS Kumiko Tsuji Fukuoka Medical technology Teikyo Univesity 4-3-14 Shin-Katsutachi-Machi Ohmuta Fukuoka 836 Japan email: c746g@wisdomcckyushu-uacjp

More information

User Specified non-bonded potentials in gromacs

User Specified non-bonded potentials in gromacs Use Specified non-bonded potentials in gomacs Apil 8, 2010 1 Intoduction On fist appeaances gomacs, unlike MD codes like LAMMPS o DL POLY, appeas to have vey little flexibility with egads to the fom of

More information

Calculus IV. Exam 2 November 13, 2003

Calculus IV. Exam 2 November 13, 2003 Name: Section: Calculus IV Math 1 Fall Professor Ben Richert Exam November 1, Please do all your work in this booklet and show all the steps. Calculators and note-cards are not allowed. Problem Possible

More information

Math 209, Fall 2009 Homework 3

Math 209, Fall 2009 Homework 3 Math 209, Fall 2009 Homework 3 () Find equations of the tangent plane and the normal line to the given surface at the specified point: x 2 + 2y 2 3z 2 = 3, P (2,, ). Solution Using implicit differentiation

More information

) in the k-th subbox. The mass of the k-th subbox is M k δ(x k, y k, z k ) V k. Thus,

) in the k-th subbox. The mass of the k-th subbox is M k δ(x k, y k, z k ) V k. Thus, 1 Triple Integrals Mass problem. Find the mass M of a solid whose density (the mass per unit volume) is a continuous nonnegative function δ(x, y, z). 1. Divide the box enclosing into subboxes, and exclude

More information

Math 241, Final Exam. 12/11/12.

Math 241, Final Exam. 12/11/12. Math, Final Exam. //. No notes, calculator, or text. There are points total. Partial credit may be given. ircle or otherwise clearly identify your final answer. Name:. (5 points): Equation of a line. Find

More information

A Memory Efficient Array Architecture for Real-Time Motion Estimation

A Memory Efficient Array Architecture for Real-Time Motion Estimation A Memoy Efficient Aay Achitectue fo Real-Time Motion Estimation Vasily G. Moshnyaga and Keikichi Tamau Depatment of Electonics & Communication, Kyoto Univesity Sakyo-ku, Yoshida-Honmachi, Kyoto 66-1, JAPAN

More information

The Java Virtual Machine. Compiler construction The structure of a frame. JVM stacks. Lecture 2

The Java Virtual Machine. Compiler construction The structure of a frame. JVM stacks. Lecture 2 Compile constuction 2009 Lectue 2 Code geneation 1: Geneating code The Java Vitual Machine Data types Pimitive types, including intege and floating-point types of vaious sizes and the boolean type. The

More information

Improvement of First-order Takagi-Sugeno Models Using Local Uniform B-splines 1

Improvement of First-order Takagi-Sugeno Models Using Local Uniform B-splines 1 Impovement of Fist-ode Takagi-Sugeno Models Using Local Unifom B-splines Felipe Fenández, Julio Gutiéez, Gacián Tiviño and Juan Calos Cespo Dep. Tecnología Fotónica, Facultad de Infomática Univesidad Politécnica

More information

Explore 3D Figures. Dr. Jing Wang (517) , Lansing Community College, Michigan, USA

Explore 3D Figures. Dr. Jing Wang (517) , Lansing Community College, Michigan, USA Explore 3D Figures Dr. Jing Wang (517)2675965, wangj@lcc.edu Lansing Community College, Michigan, USA Part I. 3D Modeling In this part, we create 3D models using Mathematica for various solids in 3D space,

More information

Exam in Calculus. Wednesday June 1st First Year at The TEK-NAT Faculty and Health Faculty

Exam in Calculus. Wednesday June 1st First Year at The TEK-NAT Faculty and Health Faculty Exam in Calculus Wednesday June 1st 211 First Year at The TEK-NAT Faculty and Health Faculty The present exam consists of 7 numbered pages with a total of 12 exercises. It is allowed to use books, notes,

More information

Configuring RSVP-ATM QoS Interworking

Configuring RSVP-ATM QoS Interworking Configuing RSVP-ATM QoS Intewoking Last Updated: Januay 15, 2013 This chapte descibes the tasks fo configuing the RSVP-ATM QoS Intewoking featue, which povides suppot fo Contolled Load Sevice using RSVP

More information

MIDTERM. Section: Signature:

MIDTERM. Section: Signature: MIDTERM Math 32B 8/8/2 Name: Section: Signature: Read all of the following information before starting the exam: Check your exam to make sure all pages are present. NO CALCULATORS! Show all work, clearly

More information

POMDP: Introduction to Partially Observable Markov Decision Processes Hossein Kamalzadeh, Michael Hahsler

POMDP: Introduction to Partially Observable Markov Decision Processes Hossein Kamalzadeh, Michael Hahsler POMDP: Intoduction to Patially Obsevable Makov Decision Pocesses Hossein Kamalzadeh, Michael Hahsle 2019-01-02 The R package pomdp povides an inteface to pomdp-solve, a solve (witten in C) fo Patially

More information

3D Reconstruction from 360 x 360 Mosaics 1

3D Reconstruction from 360 x 360 Mosaics 1 CENTER FOR MACHINE PERCEPTION 3D Reconstuction fom 36 x 36 Mosaics CZECH TECHNICAL UNIVERSITY {bakstein, pajdla}@cmp.felk.cvut.cz REPRINT Hynek Bakstein and Tomáš Pajdla, 3D Reconstuction fom 36 x 36 Mosaics,

More information

4754 Mark Scheme June 2006 Mark Scheme 4754 June 2006

4754 Mark Scheme June 2006 Mark Scheme 4754 June 2006 Mark Scheme 75 June 6 1 sin x cos x R sin(x α) R(sin x cos α cos x sin α) R cos α 1, R sin α R 1 + ( ), R tan α /1 α π/ sin x cos x sin(x π/) x coordinate of P is when x π/ π/ x 5π/6 y So coordinates are

More information

Topic -3 Image Enhancement

Topic -3 Image Enhancement Topic -3 Image Enhancement (Pat 1) DIP: Details Digital Image Pocessing Digital Image Chaacteistics Spatial Spectal Gay-level Histogam DFT DCT Pe-Pocessing Enhancement Restoation Point Pocessing Masking

More information

Engineering Mathematics (4)

Engineering Mathematics (4) Engineering Mathematics (4) Zhang, Xinyu Department of Computer Science and Engineering, Ewha Womans University, Seoul, Korea zhangxy@ewha.ac.kr Example With respect to parameter: s (arc length) r( t)

More information

Adaptation of Motion Capture Data of Human Arms to a Humanoid Robot Using Optimization

Adaptation of Motion Capture Data of Human Arms to a Humanoid Robot Using Optimization ICCAS25 June 2-5, KINTEX, Gyeonggi-Do, Koea Adaptation of Motion Captue Data of Human Ams to a Humanoid Robot Using Optimization ChangHwan Kim and Doik Kim Intelligent Robotics Reseach Cente, Koea Institute

More information

Strictly as per the compliance and regulations of:

Strictly as per the compliance and regulations of: Global Jounal of HUMAN SOCIAL SCIENCE Economics Volume 13 Issue Vesion 1.0 Yea 013 Type: Double Blind Pee Reviewed Intenational Reseach Jounal Publishe: Global Jounals Inc. (USA) Online ISSN: 49-460x &

More information

Segmentation of Casting Defects in X-Ray Images Based on Fractal Dimension

Segmentation of Casting Defects in X-Ray Images Based on Fractal Dimension 17th Wold Confeence on Nondestuctive Testing, 25-28 Oct 2008, Shanghai, China Segmentation of Casting Defects in X-Ray Images Based on Factal Dimension Jue WANG 1, Xiaoqin HOU 2, Yufang CAI 3 ICT Reseach

More information

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

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Calculus III-Final review Name MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Find the corresponding position vector. 1) Define the points P = (-,

More information

Solving Schrödinger equation numerically

Solving Schrödinger equation numerically eigenvalues.nb Solving Schödinge equation numeically Basic idea on woking out the enegy eigenvalues numeically is vey simple. Just solve the Schödinge equation with a guessed enegy, and it always makes

More information

A VECTOR PERTURBATION APPROACH TO THE GENERALIZED AIRCRAFT SPARE PARTS GROUPING PROBLEM

A VECTOR PERTURBATION APPROACH TO THE GENERALIZED AIRCRAFT SPARE PARTS GROUPING PROBLEM Accepted fo publication Intenational Jounal of Flexible Automation and Integated Manufactuing. A VECTOR PERTURBATION APPROACH TO THE GENERALIZED AIRCRAFT SPARE PARTS GROUPING PROBLEM Nagiza F. Samatova,

More information

IP Multicast Simulation in OPNET

IP Multicast Simulation in OPNET IP Multicast Simulation in OPNET Xin Wang, Chien-Ming Yu, Henning Schulzinne Paul A. Stipe Columbia Univesity Reutes Depatment of Compute Science 88 Pakway Dive South New Yok, New Yok Hauppuage, New Yok

More information

DISTRIBUTION MIXTURES

DISTRIBUTION MIXTURES Application Example 7 DISTRIBUTION MIXTURES One fequently deals with andom vaiables the distibution of which depends on vaious factos. One example is the distibution of atmospheic paametes such as wind

More information

A Neural Network Model for Storing and Retrieving 2D Images of Rotated 3D Object Using Principal Components

A Neural Network Model for Storing and Retrieving 2D Images of Rotated 3D Object Using Principal Components A Neual Netwok Model fo Stong and Reteving 2D Images of Rotated 3D Object Using Pncipal Components Tsukasa AMANO, Shuichi KUROGI, Ayako EGUCHI, Takeshi NISHIDA, Yasuhio FUCHIKAWA Depatment of Contol Engineeng,

More information

Hybrid Stiff/Compliant Workspace Control for Robotized Minimally Invasive Surgery

Hybrid Stiff/Compliant Workspace Control for Robotized Minimally Invasive Surgery 204 5th IEEE RAS & EMBS Intenational Confeence on Biomedical Robotics and Biomechatonics (BioRob) August 2-5, 204. São Paulo, Bazil Hybid Stiff/Compliant Wokspace Contol fo Robotized Minimally Invasive

More information

9/5/2018. Physics colloquium today -- 9/05/2018 PHY 711 Fall Lecture /05/2018 PHY 711 Fall Lecture 4 3

9/5/2018. Physics colloquium today -- 9/05/2018 PHY 711 Fall Lecture /05/2018 PHY 711 Fall Lecture 4 3 PHY 7 Classical Mechanics and Mathematical Methods 0-0:50 AM MWF Olin 03 Plan fo Lectue 4: Reading: Chapte F&W. Summay of pevious discussion of scatteing theoy; tansfomation etween la and cente of mass

More information

Fully conservative finite difference scheme in cylindrical coordinates for incompressible flow simulations

Fully conservative finite difference scheme in cylindrical coordinates for incompressible flow simulations ounal of Computational Physics 97 (004) 686 70 www.elsevie.com/locate/jcp Fully consevative finite diffeence scheme in cylindical coodinates fo incompessible flow simulations Youhei Moinishi a, *, Oleg

More information

Reader & ReaderT Monad (11A) Young Won Lim 8/20/18

Reader & ReaderT Monad (11A) Young Won Lim 8/20/18 Copyight (c) 2016-2018 Young W. Lim. Pemission is ganted to copy, distibute and/o modify this document unde the tems of the GNU Fee Documentation License, Vesion 1.2 o any late vesion published by the

More information

Computational and Theoretical Analysis of Null Space and Orthogonal Linear Discriminant Analysis

Computational and Theoretical Analysis of Null Space and Orthogonal Linear Discriminant Analysis Jounal of Machine Leaning Reseach 7 2006) 1183 1204 Submitted 12/05; Revised 3/06; Published 7/06 Computational and Theoetical Analysis of Null Space and Othogonal Linea Disciminant Analysis Jieping Ye

More information

5 4 THE BERNOULLI EQUATION

5 4 THE BERNOULLI EQUATION 185 CHATER 5 the suounding ai). The fictional wok tem w fiction is often expessed as e loss to epesent the loss (convesion) of mechanical into themal. Fo the idealied case of fictionless motion, the last

More information

Contents. 3 Multiple Integration. 3.1 Double Integrals in Rectangular Coordinates

Contents. 3 Multiple Integration. 3.1 Double Integrals in Rectangular Coordinates Calculus III (part 3): Multiple Integration (by Evan Dummit, 8, v. 3.) Contents 3 Multiple Integration 3. Double Integrals in Rectangular Coordinates............................... 3.. Double Integrals

More information

Extract Object Boundaries in Noisy Images using Level Set. Final Report

Extract Object Boundaries in Noisy Images using Level Set. Final Report Extact Object Boundaies in Noisy Images using Level Set by: Quming Zhou Final Repot Submitted to Pofesso Bian Evans EE381K Multidimensional Digital Signal Pocessing May 10, 003 Abstact Finding object contous

More information

The Internet Ecosystem and Evolution

The Internet Ecosystem and Evolution The Intenet Ecosystem and Evolution Contents Netwok outing: basics distibuted/centalized, static/dynamic, linkstate/path-vecto inta-domain/inte-domain outing Mapping the sevice model to AS-AS paths valley-fee

More information

2D Image Transforms Computer Vision (Kris Kitani) Carnegie Mellon University

2D Image Transforms Computer Vision (Kris Kitani) Carnegie Mellon University 2D Image Transforms 16-385 Computer Vision (Kris Kitani) Carnegie Mellon University Extract features from an image what do we do next? Feature matching (object recognition, 3D reconstruction, augmented

More information

Point-Biserial Correlation Analysis of Fuzzy Attributes

Point-Biserial Correlation Analysis of Fuzzy Attributes Appl Math Inf Sci 6 No S pp 439S-444S (0 Applied Mathematics & Infomation Sciences An Intenational Jounal @ 0 NSP Natual Sciences Publishing o Point-iseial oelation Analysis of Fuzzy Attibutes Hao-En hueh

More information

MATHEMATICS FOR ENGINEERING TUTORIAL 5 COORDINATE SYSTEMS

MATHEMATICS FOR ENGINEERING TUTORIAL 5 COORDINATE SYSTEMS MATHEMATICS FOR ENGINEERING TUTORIAL 5 COORDINATE SYSTEMS This tutorial is essential pre-requisite material for anyone studying mechanical engineering. This tutorial uses the principle of learning by example.

More information

All lengths in meters. E = = 7800 kg/m 3

All lengths in meters. E = = 7800 kg/m 3 Poblem desciption In this poblem, we apply the component mode synthesis (CMS) technique to a simple beam model. 2 0.02 0.02 All lengths in metes. E = 2.07 10 11 N/m 2 = 7800 kg/m 3 The beam is a fee-fee

More information

Communication vs Distributed Computation: an alternative trade-off curve

Communication vs Distributed Computation: an alternative trade-off curve Communication vs Distibuted Computation: an altenative tade-off cuve Yahya H. Ezzeldin, Mohammed amoose, Chistina Fagouli Univesity of Califonia, Los Angeles, CA 90095, USA, Email: {yahya.ezzeldin, mkamoose,

More information

Journal of World s Electrical Engineering and Technology J. World. Elect. Eng. Tech. 1(1): 12-16, 2012

Journal of World s Electrical Engineering and Technology J. World. Elect. Eng. Tech. 1(1): 12-16, 2012 2011, Scienceline Publication www.science-line.com Jounal of Wold s Electical Engineeing and Technology J. Wold. Elect. Eng. Tech. 1(1): 12-16, 2012 JWEET An Efficient Algoithm fo Lip Segmentation in Colo

More information

The diagram above shows a sketch of the curve C with parametric equations

The diagram above shows a sketch of the curve C with parametric equations 1. The diagram above shows a sketch of the curve C with parametric equations x = 5t 4, y = t(9 t ) The curve C cuts the x-axis at the points A and B. (a) Find the x-coordinate at the point A and the x-coordinate

More information

University of Saskatchewan Department of Mathematics & Statistics MATH Final Instructors: (01) P. J. Browne (03) B. Friberg (05) H.

University of Saskatchewan Department of Mathematics & Statistics MATH Final Instructors: (01) P. J. Browne (03) B. Friberg (05) H. University of Saskatchewan Department of Mathematics & Statistics MATH. Final Instructors: (0) P. J. Browne (0) B. Friberg (0) H. Teismann December 9, 000 Time: :00-:00 pm This is an open book exam. Students

More information

SURVEY OF VARIOUS IMAGE ENHANCEMENT TECHNIQUES IN SPATIAL DOMAIN USING MATLAB

SURVEY OF VARIOUS IMAGE ENHANCEMENT TECHNIQUES IN SPATIAL DOMAIN USING MATLAB Intenational Jounal of Compute Applications (IJCA) (0975 8887) Intenational Confeence on Advances in Compute Engineeing & Applications (ICACEA-014) at IMSEC, GZB SURVEY OF VARIOUS IMAGE ENHANCEMENT TECHNIQUES

More information

Updated: March 31, 2016 Calculus III Section Math 232. Calculus III. Brian Veitch Fall 2015 Northern Illinois University

Updated: March 31, 2016 Calculus III Section Math 232. Calculus III. Brian Veitch Fall 2015 Northern Illinois University Updated: March 3, 26 Calculus III Section 5.6 Math 232 Calculus III Brian Veitch Fall 25 Northern Illinois University 5.6 Triple Integrals In order to build up to a triple integral let s start back at

More information

MATH. 2153, Spring 16, MWF 12:40 p.m. QUIZ 1 January 25, 2016 PRINT NAME A. Derdzinski Show all work. No calculators. The problem is worth 10 points.

MATH. 2153, Spring 16, MWF 12:40 p.m. QUIZ 1 January 25, 2016 PRINT NAME A. Derdzinski Show all work. No calculators. The problem is worth 10 points. MATH. 2153, Spring 16, MWF 12:40 p.m. QUIZ 1 January 25, 2016 PRINT NAME A. Derdzinski Show all work. No calculators. The problem is worth 10 points. 1. Evaluate the area A of the triangle with the vertices

More information

OPTIMUM DESIGN OF 3R ORTHOGONAL MANIPULATORS CONSIDERING ITS TOPOLOGY

OPTIMUM DESIGN OF 3R ORTHOGONAL MANIPULATORS CONSIDERING ITS TOPOLOGY Copyight by ABCM Page 38 OPTIMUM DESIGN OF 3R ORTHOGONAL MANIPULATORS CONSIDERING ITS TOPOLOGY Giovana Tindade da Silva Oliveia, gtindadeso@yahoo.com.b School of Mechanical Engineeing, Fedeal Univesity

More information

Manual for the Simplex Method

Manual for the Simplex Method 1 1 Manual fo the Simplex Method Tadeusz Michałowski *, Maciej Rymanowski and ndzej Pietzyk Notations: x ij numbe (scala); x i vecto, X - matix 1. Intoductoy to the Simplex Method 1.1. Some fundamental

More information