Numerical Methods 數 值 方 法 概 說. Daniel Lee. Nov. 1, 2006

Size: px
Start display at page:

Download "Numerical Methods 數 值 方 法 概 說. Daniel Lee. Nov. 1, 2006"

Transcription

1 Numercal Methods 數 值 方 法 概 說 Danel Lee Nov. 1, 2006

2 Outlnes Lnear system : drect, teratve Nonlnear system : Newton-lke Interpolatons : polys, splnes, trg polys Approxmatons (I) : orthogonal polys Approxmatons (II) : specal func Numercal quadratures : Smpson s, Gaussan Numercal ODE (IVP) : RK, PC Numercal ODE (BVP) : shootng, FD, MOL Numercal ODE (BVP) : collocaton, spectral Numercal PDE (IBVP) : selected topcs

3 Course Foc 1/3 Lnear system (I) : GE, Trd, GS_SOR Lnear system (II) : CG, BCGstab, GMRes Nonlnear sys (I) : secant_1d, damped Newton Nonlnear sys (II) : Broyden s, Inexact Newton Interpolatons (I) : polynomals, splnes Interpolatons (II) : trg_polys Approxmatons (I) : orthogonal polynomals, L2 theory Approxmatons (II) : Chebyshev polys, mnmax theory Approxmatons (III) : specal functons, Bessel s, Numercal ntegraton : Smpson s, Gaussan quadrature

4 Course Foc 2/3 Numercal ODE, IVP : rkf45, N-dm Numercal ODE, IVP : PC, predct-correct Numercal ODE, BVP : MOL, 1D/2D Numercal ODE, TPBVP : FD Numercal ODE, TPBVP : Collocaton/splne Numercal ODE, TPBVP : Collocaton/Tchebyshev Numercal ODE, TPBVP : Spectral/Tchebyshev Numercal ODE, TPBVP : Spectral/Bessel Numercal ODE, TPBVP : Shoottng

5 Course Foc 3/3 Posson 3D Heat 2D Wave 2D Incompressble NS 2D

6 Lnear (Algebrac) System Matrx types : dense or sparse Methods : drect or teratve

7 Gaussan Elmnaton wthout Pvotng A 4-by-4 example (on page 264) Phase 1 : forward elmnatons Phase 2 : back substtutons 6x1 2x2 + 2x3 + 4x4 = 16 12x1 8x2 + 6x3 + 10x4 = 26 3x1 13x2 + 9x3 + 3x4 = 19 6x1 + 4x2 + x3 18x4 = 34

8 Forward Elmnatons (1) 6x1 2x2 + 2x3 + 4x4 = 16 12x1 8x2 + 6x3 + 10x4 = 26 3x1 13x2 + 9x3 + 3x4 = 19 6x1 + 4x2 + x3 18x4 = 34 6x1 2x2 + 2x3 + 4x4 = 16 x1 4x2 + 2x3 + 2x4 = 6 12x2 + 8x3 + x4 = 27 2x2 + 3x3 14x4 = 18

9 Forward Elmnatons (2) 6x1 2x2 + 2x3 + 4x4 = 16 x1 4x2 + 2x3 + 2x4 = 6 12x2 + 8x3 + x4 = 27 2x2 + 3x3 14x4 = 18 6x1 2x2 + 2x3 + 4x4 = 16 4x2 + 2x3 + 2x4 = 6 2x3 5x4 = 9 4x3 13x4 = 21

10 Forward Elmnatons (3) 6x1 2x2 + 2x3 + 4x4 = 16 4x2 + 2x3 + 2x4 = 6 2x3 5x4 = 9 4x3 13x4 = 21 6x1 2x2 + 2x3 + 4x4 = 16 4x2 + 2x3 + 2x4 = 6 2x3 5x4 = 9 3x4 = 3

11 Back Substtutons 6x1 2x2 + 2x3 + 4x4 = 16 4x2 + 2x3 + 2x4 = 6 2x3 5x4 = 9 3x4 = 3? x = 1 3 x = 2 1 x 2 3 = x = 4 1

12 GE --- Key Ponts An upper trangular matrx s easy to solve Elementary row operatons on a matrx GE as a seq of matrx left-multplcatons

13 GE --- Notatons and Termnologes Gaussan Elmnaton ( GE ) Upper trangular matrx Pvot element, pvot equaton Multplers Resdual vector r = Ax b Error vector e = x_sol x_computed Condton Num cond(a)= A A_nv No/partal/complete pvotng

14 GE --- More Thoughts Q1: Upper Trangular vs. Lower Trangular? Q2: Elementary column operatons?

15 GE --- wth Partal Pvotng Choose the pvot elements ( and eqs ) Interchange rows accordngly Compute multplers and do elmnatons Back substtutons as before In practce, store pvots and multplers Amng at lots of RHS and same matrx Routnes : LU_Decomp(), LU_Solve()

16 GE --- HW Functon ludecomp( ), page 285 Functon lusolve( ), page 287 Man : test

17 Nonlnear Solve--- Hghlghts 1D zero fnder N-dm Newton s method : Bascs Practcal N-dm Newton s method Two-pont Newton Methods Inexact Newton method Broyden s method

18 1-dm Zero Fnders Bsecton method Newton s method, quadratc convergence Secant method, superlnear convergence Other methods More readng assgnment

19 N-dm Newton Basc Issues (Crtcal) ntal start Expensve Jacoban evaluaton Approxmate Jacoban needed n practce Effcent lnear solve

20 Practcal N-dm Newton Modfed newton Damped newton Two-grd newton Inexact newton

21 Interpolaton --- Hghlghts Algebrac polynomal nterpolaton Cubc splne nterpolaton Trgonometrc polynomal nterpolaton

22 Polynomal Interpolatons Problem formulaton Lagrange bass functon approach Newton s recursve approach Ptfall of unform nodes : The Runge func Dvded dfference : general knots Newton s approach va dvded dfference Interpolaton at Chebyshev nodes

23 Splne Interpolatons (General) splnes as pecewse polynomals (Smooth) Cubc splnes Count of defnng coeffcents Count of constrants The degree-of-freedom Varous boundary condtons Matrx forms Convergence and stablty

24 Trg-polynomal Interpolatons Even/odd degree A trgonometrc dentty The bass functon

25 Approxmatons --- Hghlghts Orthogonal polynomals : weghted - 2 Chebyshev polynomals : L - theory (Non-poly) Specal Functons : Bessel s L

26 Orthogonal Polynomals Fnte/sem-nfnte/nfnte ntervals Weghted Remann ntegrals Weghted L 2 - norms Polynomals as subspace Gram-Schmdt orthogonalzaton Typcal examples

27 Chebyshev Polynomals T ( x) = cos( nθ ), wth x = cos n A few examples : explct forms A few examples : the graphs Three-term recurson Extremes and zeros θ T, T, L, T More recursve relatons The mn-max characterzaton Varous applcatons n numercal analyss

28 Numercal Integratons 1/2 Remann ntegrals : as upper/lower lmts One-pont quadrature : md-pont rule Two-pont quadrature : trapezod rule Three-pont quadrature: Smpson s rule (Composte) Smpson s rule General Newton-Cotes formulae Gaussan type : nodes and weghts Software resources : Quadpack/netlb

29 Md-pont rule b a n 1 1 ( ) ( ) ( + ) = 0 f x dx x x f x x Trapezod rule b a n 1 1 f ( x) dx ( x + 1 x ) f ( x ) + f ( x + 1) 2 = 0 [ ]

30 (Composte) Smpson s Rule b a n / 2 h f ( x) dx f ( a) + f ( b) + 4 f a + (2 1) h 3 = 1 Gaussan type : [ ] [ ] ( n 2)/ f ( a + 2 h) = 1 b f x dx A f x + A f x + A f x a L + n n ( ) ( ) ( ) ( ) nodes weghts x, x, L, x 0 1 n A, A, L, A 0 1 n

31 Numercal Integratons 2/2 Runge-Kutta approach Lower order RK methods : RK2 RK3 method : Varous RK4 methods : RK5, RK6, RK7, RK8 : Acceleraton : halvng and combnng rkf45, rk56 : Software resources : rksute/netlb

32 RK2 where x( t + h) = x( t) + ( K + K ) K = hf ( t, x) 1 K = hf ( t + h, x + K ) 2 1

33 RK3 x( t + h) = x( t) + (2K + 3K + 4 K ) where K1 = hf ( t, x) 1 1 K2 = hf ( t + h, x + K 2 2 1) 3 3 K3 = hf ( t + h, x + K 4 4 2)

34 RK4 x( t + h) = x( t) + ( K + 2K + 2 K + K ) where K1 = hf ( t, x) 1 1 K2 = hf ( t + h, x + K 2 2 1) 1 1 K3 = hf ( t + h, x + K 2 2 2) K4 = hf ( t + h, x + K3)

35 RK5 x( t + h) = x( t) + K + K + K K where K1 = hf ( t, x) 1 1 K2 = hf ( t + h, x + K 4 4 1) K3 = hf ( t + h, x + K K 32 2) K4 = hf ( t + h, x + K K K ) K5 = hf ( t + h, x + K K2 + K K )

36 Numercal ODE --- Hghlghts Types : IVP, BVP Doman geometry : regular or not, 1D/2D/ Numercal methods : mostly sem-mplct Dfferencng : explct, mplct, 3-level Spatal dfferences : FD, FV (cell-centered) Other methods for BVP : MOL, Collocaton Package approach : rksute, odepack, DAE :

37 Numercal BVP-FD 1st dervatve, 2-pont 1st order dfference 1st dervatve, 2-pont 2nd order central 2nd dervatve, 3-pont 2nd order central 2nd dervatve, 3-pont one-sded 1st order Combnaton of two lower order schemes 2D Cartesan type fve-pont stencls General geometry

38 Numercal BVP-FV Dvergence theorem and conservaton law Concept of fnte volumes Center/Vertex/Edge based FV methods Boundary-ftted or not Combnatons of dfferent types of FV Relatons to FD and FEM

39 Numercal BVP-MOL Sem-mplct dscretzaton Contnuous n tme, dscrete n spatal var Results n system of ODE/IVP Good IVP package/solver/routne expected Easy 1D for learnng May not be effcent for 3D applcatons

40 Numercal BVP-Collocaton The Fourer case Chebyshev polys and seres Bessel functons and seres Legendre polys and seres Model examples

41 Fnte Dfference for PDE Implct tme dfferencng u ( n+ 1) ( n) u x ( 1), j u x n+, j t ( x, j ) ( ) ( ) t Explct/Implct spatal dfferencng ( α = n, n + 1) u α α u x ( n 1) + 1, j u x + 1, j x ( x, j ) ( ) ( ) 2 x

42 FD --- Unform Cartesan Grd y y y h y y 2y + y h

43 FV --- General Geometry y p = Ap y p + Aw yw + Ae ye + As ys + An yn conservaton law plus Dvergence Theorem

44 Numercal BVP MOL (1) D.E. ut = uxx, 0 x 1, t 0 I.C. B.C. t = 0, u( x,0) = f ( x) x = 0,1, u(0, t) = u ( t), u(1, t) = u ( t) 0 n+ 1 Model : (contnuous n t, dscrete n x) Spatal Dscretzaton : 0 = x0 < x1 < L < x < Lxn < x n + 1 = 1 u( x, t) u ( t)

45 MOL (2) Dscrete System : = 1,2, L, n u ( t) = u ( t), u ( t) 0 n+ 1 u+ 1( t) u 1( t) 2 x : gven Problem : Solve system of IVP n t

46 FD -Frst Dervatve Approxmatons y x y( x ) y( x ) + 1 ( ) x+ 1 x y( x ) y( x 1) y ( x ) x x 1 y( x + 1) y( x 1) y ( x ) x x + 1 1

47 FD - 2nd Dervatve Approxmatons y 2y + y y ( x ) = h y, y, y y, y, y

48 Dervaton of Central Dfference of y h h h y y hy y y y (4) + 1 = h h h y y hy y y y (4) 1 = h 5 y+ 1 y 1 = 2 hy + y + O( h ) 3 2 y+ 1 y 1 h 4 y = + y + O( h ) 2h 6

49 Dervaton of Central Dfference of y h h h y y hy y y y (4) + 1 = h h h y y hy y y y (4) 1 = y+ 1 2y + y 1 h (4) 4 y + y ( ) 2 + O h h 12

50 One-sded Dfference for y 2 3 h h ''' y+ 1 = y + hy + y + y h 8h y + 2 = y + 2hy + y + y 2 6 ''' 4h y y y hy y 6 3 ''' = y + 2y y 2 2 h = y h y 3

51 One-sded Dfference for y h h y y hy y y ''' + 1 = h 8h y y hy y y ''' + 2 = h 6h y y y y y ''' = + y 2y + y h = y + hy

52 Combnng Two FD Schemes 2 y+ 1 2y + y 1 h (4) 4 y + y ( ) 2 + O h h 12 2 y+ 2 2y + y 2 4h (4) 4 y + y ( ) 2 + O h 4h 12 y 16y + 30y 16y + y + 4h y O( h ) 2

53 Two-dmensonal FD Applcatons u j j ( u ) x ( u ) u y xx = u( x, y ) j j + u yy u u u + 1, j 1, j 2h, j+ 1, j 1 2h x u y u + u + u + u 4u + 1, j 1, j, j+ 1, j 1 j 4

54 數 值 習 題 自 習 手 冊 李 天 佑 東 海 大 學 數 學 系 Nov. 1, 2006

55 線 性 系 統 Q1 : 何 謂 二 階 段 陽 春 高 斯 消 去 法? Q2 : 陽 春 型 前 進 消 去 階 段 之 可 能 障 礙 為 何? 解 決 方 法 為 何? Q3 : 前 述 階 段 是 否 必 定 成 功? Q4 : 消 去 階 段 結 束, 該 矩 陣 主 對 角 元 素 乘 積 之 理 論 意 義 為 何? Q5 : 前 述 判 斷 之 風 險 為 何? Q6 : 後 退 代 入 階 段 之 理 想 假 設 為 何? Q7 : 試 述 部 分 列 篩 選 型 高 斯 消 去 法 Q8 : 詳 述 高 斯 消 去 法 之 LU 分 解 理 論 Q9 : 當 高 斯 ( 消 去 ) 遇 見 對 稱 ( 矩 陣 ),, 請 補 實 續 完 Q10 : 重 新 開 始, 如 選 擇 第 n 個 方 程 式 與 第 n 個 變 數, 消 去 其 餘 方 程 之, 再 利 用 第 n-1 個 方 程 式 之 此 類 推, 是 為 後 退 消 去 階 段, 變 數, 消 去 其 餘 方 程 () 之 變 數 係 數, 以 所 得 矩 陣 有 何 特 徵? 本 階 段 有 何 風 險? 如 何 解 決? Q11 : ( 續 前 ) 繼 以 前 進 代 入, 總 結 為 UL 型 高 斯 消 去 法 程 式 習 作 : P1 : 設 計 並 測 試 副 程 式 ludecomp( ), lusolve( )

56 多 項 式 插 值 法 Q1 : 何 謂 多 項 式 插 值 問 題? Q2 : 相 關 之 Lagrange 基 底 函 數 為 何? Q3 : 為 何 b-orthogonalty 意 謂 線 性 獨 立? Q4 : 試 以 Lagrange 基 底 表 示 內 插 解 Q5 : 牛 頓 之 遞 迴 建 構 法 為 何? Q6 : 試 詳 述 ( 高 階 ) 差 分? Q7 : 內 插 解 之 差 分 形 式 為 何? 程 式 習 作 : P1 : Lagrange 形 式 插 值 解 之 簡 易 測 試 P2 : 牛 頓 差 分 型 插 值 解 之 軟 體 設 計

57 三 角 多 項 式 插 值 法 Q1 : 何 謂 三 角 多 項 式 插 值 問 題? Q2 : 相 關 之 基 底 函 數 為 何? 程 式 習 作 : P1 : 軟 體 設 計 與 測 試

58 三 次 樣 條 函 數 內 插 法 Q1 : 何 謂 片 段 多 項 式? Q2 : 何 謂 樣 條 函 數? Q3 : 何 謂 三 次 樣 條 插 值 問 題? Q4 : 節 點 與 結 點 差 異 為 何? Q5 : 樣 條 插 值 一 般 是 否 有 解? Q6 : 可 能 之 邊 界 條 件 為 何? Q7 : 實 用 性 之 考 量 因 素 為 何? 程 式 習 作 : P1 : 設 計 副 程 式 splne3_coef(), splne3_evalu8() 與 測 試 用 之 主 程 式

59 數 值 積 分 Q1 : 何 謂 中 點 法, 梯 形 法, 與 辛 普 森 法? Q2 : 試 述 Newton-Cotes 之 想 法? Q3 : 高 斯 積 分 公 式 之 想 法 為 何? Q4 : 試 比 較 前 述 二 種 構 想 Q5 : 調 適 型 辛 普 森 法 之 想 法 為 何? 程 式 習 作 : P1 : 設 計 辛 普 森 法 副 程 式 與 測 試 用 之 主 程 式 P2 : 針 對 次 數 為 4, 6, 8 之 高 斯 積 分 公 式, 設 計 副 程 式 與 測 試 用 之 主 程 式

60 Lnear System Readng assgnment : norms, analyss, prob Q1 : work out by hands an example va QL P1 : routne and test trd_dag (n,a_vec,b_vec,c_vec,x_vec,rhs_vec) P2 : lu_decomp( ), lu_solve( ) and test P3 : gs_sor( ) and test P4 : cg() and test

61 Newton s Method 1/2 How s Newton s method related to Taylor expanson? How s the newton step mplemented n practce? Descrbe reasonable stoppng crteron(s) How s Newton s method related to functonal teratons? Can accelerated Newton s method accelerate? Does damped newton s method damp somethng?

62 Newton s method 2/2 Desgn approxmate Jacoban n varous ways. What can a two-grd setup help Newton s method n one way or the other? Desgn a modfed Newton s method at a double root.of a two-by-two system

63 Interpolatons --- polynomals Readng assgnment : Q1 : What s a polynomal nterpolaton problem? Q2 : What are the Lagrange bass functons? Q3 : Why b-orthogonalty mples ndependence? Q4 : Express the nterpolant n terms of Lagrange bass. Q5 : What s the recursve constructon of Newton s? Q6 : Descrbe dvded dfferences n detals? Q7 : Express the nterpolant n terms of dvded dfferences. P1 : Smple test of Lagrange form. P2 : Work out the nterpolant n newton s form

64 Interpolatons --- Trg polys Odd and/or even degree. Some trg denttes. The bass functons. P1 : Desgn the routne(s) and test.

65 Interpolatons --- Cubc splnes What s a pecewse polynomal functon? What s a (polynomal) splne functon? What s a cubc splne nterpolaton problem? Dfferences bewteen nodes and knots? What s a rule of thurm for solvablty? Some possble boundary condtons? Practcal ssues and dscussons. P1 : routnes splne3_coef(), splne3_evalu8(), test

66 Numercal Quadratures Descrbe mdpont rule, trapezod s, and smpson s What s the dea of Newton-Cotes? Why s the Newton-Cotes restrctve, compared to Gaussan quadrature? What s the dea behnd adaptve smpson s? P1 : smpson s and test P2 : gaussan quadrature of degree 4, 6, 8.

67 Numercal ODE --- IVP P1 : rk4 of general dm, and test. Predctor-Corrector method : low order case Exercse on usng rkf45 : fnd cycle problem from your ODE text.

68 Numercal ODE --- BVP P0 : Implement the Shootng method for 1D P1 : Implement the FD method for 1D/2D P2 : Implement the MOL method for 1D/2D P3 : Implement Collocaton va cubc splne

BERNSTEIN POLYNOMIALS

BERNSTEIN POLYNOMIALS On-Lne Geometrc Modelng Notes BERNSTEIN POLYNOMIALS Kenneth I. Joy Vsualzaton and Graphcs Research Group Department of Computer Scence Unversty of Calforna, Davs Overvew Polynomals are ncredbly useful

More information

Finite difference method

Finite difference method grd ponts x = mesh sze = X NÜÆ Fnte dfference method Prncple: dervatves n the partal dfferental eqaton are approxmated by lnear combnatons of fncton vales at the grd ponts 1D: Ω = (0, X), (x ), = 0,1,...,

More information

benefit is 2, paid if the policyholder dies within the year, and probability of death within the year is ).

benefit is 2, paid if the policyholder dies within the year, and probability of death within the year is ). REVIEW OF RISK MANAGEMENT CONCEPTS LOSS DISTRIBUTIONS AND INSURANCE Loss and nsurance: When someone s subject to the rsk of ncurrng a fnancal loss, the loss s generally modeled usng a random varable or

More information

A Penalty Method for American Options with Jump Diffusion Processes

A Penalty Method for American Options with Jump Diffusion Processes A Penalty Method for Amercan Optons wth Jump Dffuson Processes Y. d Hallun, P.A. Forsyth, and G. Labahn March 9, 23 Abstract The far prce for an Amercan opton where the underlyng asset follows a jump dffuson

More information

Ring structure of splines on triangulations

Ring structure of splines on triangulations www.oeaw.ac.at Rng structure of splnes on trangulatons N. Vllamzar RICAM-Report 2014-48 www.rcam.oeaw.ac.at RING STRUCTURE OF SPLINES ON TRIANGULATIONS NELLY VILLAMIZAR Introducton For a trangulated regon

More information

8.5 UNITARY AND HERMITIAN MATRICES. The conjugate transpose of a complex matrix A, denoted by A*, is given by

8.5 UNITARY AND HERMITIAN MATRICES. The conjugate transpose of a complex matrix A, denoted by A*, is given by 6 CHAPTER 8 COMPLEX VECTOR SPACES 5. Fnd the kernel of the lnear transformaton gven n Exercse 5. In Exercses 55 and 56, fnd the mage of v, for the ndcated composton, where and are gven by the followng

More information

A frequency decomposition time domain model of broadband frequency-dependent absorption: Model II

A frequency decomposition time domain model of broadband frequency-dependent absorption: Model II A frequenc decomposton tme doman model of broadband frequenc-dependent absorpton: Model II W. Chen Smula Research Laborator, P. O. Box. 134, 135 Lsaker, Norwa (1 Aprl ) (Proect collaborators: A. Bounam,

More information

Consider a 1-D stationary state diffusion-type equation, which we will call the generalized diffusion equation from now on:

Consider a 1-D stationary state diffusion-type equation, which we will call the generalized diffusion equation from now on: Chapter 1 Boundary value problems Numercal lnear algebra technques can be used for many physcal problems. In ths chapter we wll gve some examples of how these technques can be used to solve certan boundary

More information

Point cloud to point cloud rigid transformations. Minimizing Rigid Registration Errors

Point cloud to point cloud rigid transformations. Minimizing Rigid Registration Errors Pont cloud to pont cloud rgd transformatons Russell Taylor 600.445 1 600.445 Fall 000-014 Copyrght R. H. Taylor Mnmzng Rgd Regstraton Errors Typcally, gven a set of ponts {a } n one coordnate system and

More information

Lecture 3: Force of Interest, Real Interest Rate, Annuity

Lecture 3: Force of Interest, Real Interest Rate, Annuity Lecture 3: Force of Interest, Real Interest Rate, Annuty Goals: Study contnuous compoundng and force of nterest Dscuss real nterest rate Learn annuty-mmedate, and ts present value Study annuty-due, and

More information

Introduction to Differential Algebraic Equations

Introduction to Differential Algebraic Equations Dr. Abebe Geletu Ilmenau Unversty of Technology Department of Smulaton and Optmal Processes (SOP) Wnter Semester 2011/12 4.1 Defnton and Propertes of DAEs A system of equatons that s of the form F (t,

More information

Realistic Image Synthesis

Realistic Image Synthesis Realstc Image Synthess - Combned Samplng and Path Tracng - Phlpp Slusallek Karol Myszkowsk Vncent Pegoraro Overvew: Today Combned Samplng (Multple Importance Samplng) Renderng and Measurng Equaton Random

More information

Immersed interface methods for moving interface problems

Immersed interface methods for moving interface problems Numercal Algorthms 14 (1997) 69 93 69 Immersed nterface methods for movng nterface problems Zhln L Department of Mathematcs, Unversty of Calforna at Los Angeles, Los Angeles, CA 90095, USA E-mal: zhln@math.ucla.edu

More information

Least Squares Fitting of Data

Least Squares Fitting of Data Least Squares Fttng of Data Davd Eberly Geoetrc Tools, LLC http://www.geoetrctools.co/ Copyrght c 1998-2016. All Rghts Reserved. Created: July 15, 1999 Last Modfed: January 5, 2015 Contents 1 Lnear Fttng

More information

Support Vector Machines

Support Vector Machines Support Vector Machnes Max Wellng Department of Computer Scence Unversty of Toronto 10 Kng s College Road Toronto, M5S 3G5 Canada wellng@cs.toronto.edu Abstract Ths s a note to explan support vector machnes.

More information

HowHow to Find the Best Online Stock Broker

HowHow to Find the Best Online Stock Broker A GENERAL APPROACH FOR SECURITY MONITORING AND PREVENTIVE CONTROL OF NETWORKS WITH LARGE WIND POWER PRODUCTION Helena Vasconcelos INESC Porto hvasconcelos@nescportopt J N Fdalgo INESC Porto and FEUP jfdalgo@nescportopt

More information

Computational Fluid Dynamics II

Computational Fluid Dynamics II Computatonal Flud Dynamcs II Eercse 2 1. Gven s the PDE: u tt a 2 ou Formulate the CFL-condton for two possble eplct schemes. 2. The Euler equatons for 1-dmensonal, unsteady flows s dscretsed n the followng

More information

A high-order compact method for nonlinear Black-Scholes option pricing equations of American Options

A high-order compact method for nonlinear Black-Scholes option pricing equations of American Options Bergsche Unverstät Wuppertal Fachberech Mathematk und Naturwssenschaften Lehrstuhl für Angewandte Mathematk und Numersche Mathematk Lehrstuhl für Optmerung und Approxmaton Preprnt BUW-AMNA-OPAP 10/13 II

More information

LECTURES on COMPUTATIONAL NUMERICAL ANALYSIS of PARTIAL DIFFERENTIAL EQUATIONS

LECTURES on COMPUTATIONAL NUMERICAL ANALYSIS of PARTIAL DIFFERENTIAL EQUATIONS LECTURES on COMPUTATIONAL NUMERICAL ANALYSIS of PARTIAL DIFFERENTIAL EQUATIONS J. M. McDonough Departments of Mechancal Engneerng and Mathematcs Unversty of Kentucky c 1985, 00, 008 Contents 1 Introducton

More information

Logistic Regression. Lecture 4: More classifiers and classes. Logistic regression. Adaboost. Optimization. Multiple class classification

Logistic Regression. Lecture 4: More classifiers and classes. Logistic regression. Adaboost. Optimization. Multiple class classification Lecture 4: More classfers and classes C4B Machne Learnng Hlary 20 A. Zsserman Logstc regresson Loss functons revsted Adaboost Loss functons revsted Optmzaton Multple class classfcaton Logstc Regresson

More information

Characterization of Assembly. Variation Analysis Methods. A Thesis. Presented to the. Department of Mechanical Engineering. Brigham Young University

Characterization of Assembly. Variation Analysis Methods. A Thesis. Presented to the. Department of Mechanical Engineering. Brigham Young University Characterzaton of Assembly Varaton Analyss Methods A Thess Presented to the Department of Mechancal Engneerng Brgham Young Unversty In Partal Fulfllment of the Requrements for the Degree Master of Scence

More information

Imperial College London

Imperial College London F. Fang 1, C.C. Pan 1, I.M. Navon 2, M.D. Pggott 1, G.J. Gorman 1, P.A. Allson 1 and A.J.H. Goddard 1 1 Appled Modellng and Computaton Group Department of Earth Scence and Engneerng Imperal College London,

More information

On the Solution of Indefinite Systems Arising in Nonlinear Optimization

On the Solution of Indefinite Systems Arising in Nonlinear Optimization On the Soluton of Indefnte Systems Arsng n Nonlnear Optmzaton Slva Bonettn, Valera Ruggero and Federca Tnt Dpartmento d Matematca, Unverstà d Ferrara Abstract We consder the applcaton of the precondtoned

More information

A PRIMER ON REGRESSION SPLINES. 1. Overview

A PRIMER ON REGRESSION SPLINES. 1. Overview A PRIMER ON REGRESSION SPLINES JEFFREY S. RACINE 1. Overvew B-splnes consttute an appealng method for the nonparametrc estmaton of a range of statstcal objects of nterest. In ths prmer we focus our attenton

More information

where the coordinates are related to those in the old frame as follows.

where the coordinates are related to those in the old frame as follows. Chapter 2 - Cartesan Vectors and Tensors: Ther Algebra Defnton of a vector Examples of vectors Scalar multplcaton Addton of vectors coplanar vectors Unt vectors A bass of non-coplanar vectors Scalar product

More information

A Three-Point Combined Compact Difference Scheme

A Three-Point Combined Compact Difference Scheme JOURNAL OF COMPUTATIONAL PHYSICS 140, 370 399 (1998) ARTICLE NO. CP985899 A Three-Pont Combned Compact Derence Scheme Peter C. Chu and Chenwu Fan Department o Oceanography, Naval Postgraduate School, Monterey,

More information

Hedging Interest-Rate Risk with Duration

Hedging Interest-Rate Risk with Duration FIXED-INCOME SECURITIES Chapter 5 Hedgng Interest-Rate Rsk wth Duraton Outlne Prcng and Hedgng Prcng certan cash-flows Interest rate rsk Hedgng prncples Duraton-Based Hedgng Technques Defnton of duraton

More information

Time Domain simulation of PD Propagation in XLPE Cables Considering Frequency Dependent Parameters

Time Domain simulation of PD Propagation in XLPE Cables Considering Frequency Dependent Parameters Internatonal Journal of Smart Grd and Clean Energy Tme Doman smulaton of PD Propagaton n XLPE Cables Consderng Frequency Dependent Parameters We Zhang a, Jan He b, Ln Tan b, Xuejun Lv b, Hong-Je L a *

More information

2008/8. An integrated model for warehouse and inventory planning. Géraldine Strack and Yves Pochet

2008/8. An integrated model for warehouse and inventory planning. Géraldine Strack and Yves Pochet 2008/8 An ntegrated model for warehouse and nventory plannng Géraldne Strack and Yves Pochet CORE Voe du Roman Pays 34 B-1348 Louvan-la-Neuve, Belgum. Tel (32 10) 47 43 04 Fax (32 10) 47 43 01 E-mal: corestat-lbrary@uclouvan.be

More information

CS 2750 Machine Learning. Lecture 3. Density estimation. CS 2750 Machine Learning. Announcements

CS 2750 Machine Learning. Lecture 3. Density estimation. CS 2750 Machine Learning. Announcements Lecture 3 Densty estmaton Mlos Hauskrecht mlos@cs.ptt.edu 5329 Sennott Square Next lecture: Matlab tutoral Announcements Rules for attendng the class: Regstered for credt Regstered for audt (only f there

More information

How To Assemble The Tangent Spaces Of A Manfold Nto A Coherent Whole

How To Assemble The Tangent Spaces Of A Manfold Nto A Coherent Whole CHAPTER 7 VECTOR BUNDLES We next begn addressng the queston: how do we assemble the tangent spaces at varous ponts of a manfold nto a coherent whole? In order to gude the decson, consder the case of U

More information

v a 1 b 1 i, a 2 b 2 i,..., a n b n i.

v a 1 b 1 i, a 2 b 2 i,..., a n b n i. SECTION 8.4 COMPLEX VECTOR SPACES AND INNER PRODUCTS 455 8.4 COMPLEX VECTOR SPACES AND INNER PRODUCTS All the vector spaces we have studed thus far n the text are real vector spaces snce the scalars are

More information

Fast degree elevation and knot insertion for B-spline curves

Fast degree elevation and knot insertion for B-spline curves Computer Aded Geometrc Desgn 22 (2005) 183 197 www.elsever.com/locate/cagd Fast degree elevaton and knot nserton for B-splne curves Q-Xng Huang a,sh-mnhu a,, Ralph R. Martn b a Department of Computer Scence

More information

Study on Model of Risks Assessment of Standard Operation in Rural Power Network

Study on Model of Risks Assessment of Standard Operation in Rural Power Network Study on Model of Rsks Assessment of Standard Operaton n Rural Power Network Qngj L 1, Tao Yang 2 1 Qngj L, College of Informaton and Electrcal Engneerng, Shenyang Agrculture Unversty, Shenyang 110866,

More information

PERRON FROBENIUS THEOREM

PERRON FROBENIUS THEOREM PERRON FROBENIUS THEOREM R. CLARK ROBINSON Defnton. A n n matrx M wth real entres m, s called a stochastc matrx provded () all the entres m satsfy 0 m, () each of the columns sum to one, m = for all, ()

More information

Automated information technology for ionosphere monitoring of low-orbit navigation satellite signals

Automated information technology for ionosphere monitoring of low-orbit navigation satellite signals Automated nformaton technology for onosphere montorng of low-orbt navgaton satellte sgnals Alexander Romanov, Sergey Trusov and Alexey Romanov Federal State Untary Enterprse Russan Insttute of Space Devce

More information

The Effect of Mean Stress on Damage Predictions for Spectral Loading of Fiberglass Composite Coupons 1

The Effect of Mean Stress on Damage Predictions for Spectral Loading of Fiberglass Composite Coupons 1 EWEA, Specal Topc Conference 24: The Scence of Makng Torque from the Wnd, Delft, Aprl 9-2, 24, pp. 546-555. The Effect of Mean Stress on Damage Predctons for Spectral Loadng of Fberglass Composte Coupons

More information

Minimal Coding Network With Combinatorial Structure For Instantaneous Recovery From Edge Failures

Minimal Coding Network With Combinatorial Structure For Instantaneous Recovery From Edge Failures Mnmal Codng Network Wth Combnatoral Structure For Instantaneous Recovery From Edge Falures Ashly Joseph 1, Mr.M.Sadsh Sendl 2, Dr.S.Karthk 3 1 Fnal Year ME CSE Student Department of Computer Scence Engneerng

More information

8 Algorithm for Binary Searching in Trees

8 Algorithm for Binary Searching in Trees 8 Algorthm for Bnary Searchng n Trees In ths secton we present our algorthm for bnary searchng n trees. A crucal observaton employed by the algorthm s that ths problem can be effcently solved when the

More information

A Novel Methodology of Working Capital Management for Large. Public Constructions by Using Fuzzy S-curve Regression

A Novel Methodology of Working Capital Management for Large. Public Constructions by Using Fuzzy S-curve Regression Novel Methodology of Workng Captal Management for Large Publc Constructons by Usng Fuzzy S-curve Regresson Cheng-Wu Chen, Morrs H. L. Wang and Tng-Ya Hseh Department of Cvl Engneerng, Natonal Central Unversty,

More information

SUMMARY. Topology optimization, buckling, eigenvalue, derivative, structural optimization 1. INTRODUCTION

SUMMARY. Topology optimization, buckling, eigenvalue, derivative, structural optimization 1. INTRODUCTION INTERNATIONAL JOURNAL FOR NUMERICAL METHODS IN ENGINEERING Int. J. Numer. Meth. Engng 0000; 00:1 20 Publshed onlne n Wley InterScence (www.nterscence.wley.com). A fast method for solvng bnary programmng

More information

Boundary Element Domain Decomposition Methods Challenges and Applications

Boundary Element Domain Decomposition Methods Challenges and Applications Boundary Element Doman Decomposton Methods Challenges and Applcatons Olaf Stenbach Insttut für Numersche Mathematk Technsche Unverstät Graz SFB 404 Mehrfeldprobleme n der Kontnuumsmechank, Stuttgart n

More information

Effect of a spectrum of relaxation times on the capillary thinning of a filament of elastic liquid

Effect of a spectrum of relaxation times on the capillary thinning of a filament of elastic liquid J. Non-Newtonan Flud Mech., 72 (1997) 31 53 Effect of a spectrum of relaxaton tmes on the capllary thnnng of a flament of elastc lqud V.M. Entov a, E.J. Hnch b, * a Laboratory of Appled Contnuum Mechancs,

More information

Damage detection in composite laminates using coin-tap method

Damage detection in composite laminates using coin-tap method Damage detecton n composte lamnates usng con-tap method S.J. Km Korea Aerospace Research Insttute, 45 Eoeun-Dong, Youseong-Gu, 35-333 Daejeon, Republc of Korea yaeln@kar.re.kr 45 The con-tap test has the

More information

+ + + - - This circuit than can be reduced to a planar circuit

+ + + - - This circuit than can be reduced to a planar circuit MeshCurrent Method The meshcurrent s analog of the nodeoltage method. We sole for a new set of arables, mesh currents, that automatcally satsfy KCLs. As such, meshcurrent method reduces crcut soluton to

More information

Linear Circuits Analysis. Superposition, Thevenin /Norton Equivalent circuits

Linear Circuits Analysis. Superposition, Thevenin /Norton Equivalent circuits Lnear Crcuts Analyss. Superposton, Theenn /Norton Equalent crcuts So far we hae explored tmendependent (resste) elements that are also lnear. A tmendependent elements s one for whch we can plot an / cure.

More information

MATHCAD'S PROGRAM FUNCTION and APPLICATION IN TEACHING OF MATH

MATHCAD'S PROGRAM FUNCTION and APPLICATION IN TEACHING OF MATH . About Matcad MATHCAD'S PROGRAM FUNCTION and APPLICATION IN TEACHING OF MATH DE TING WU Depart of Mat Moreouse College Atlanta, GA.33, USA dtwu@moreouse.edu. Introducton Matcad s one of popular computer

More information

Institute of Informatics, Faculty of Business and Management, Brno University of Technology,Czech Republic

Institute of Informatics, Faculty of Business and Management, Brno University of Technology,Czech Republic Lagrange Multplers as Quanttatve Indcators n Economcs Ivan Mezník Insttute of Informatcs, Faculty of Busness and Management, Brno Unversty of TechnologCzech Republc Abstract The quanttatve role of Lagrange

More information

THE DISTRIBUTION OF LOAN PORTFOLIO VALUE * Oldrich Alfons Vasicek

THE DISTRIBUTION OF LOAN PORTFOLIO VALUE * Oldrich Alfons Vasicek HE DISRIBUION OF LOAN PORFOLIO VALUE * Oldrch Alfons Vascek he amount of captal necessary to support a portfolo of debt securtes depends on the probablty dstrbuton of the portfolo loss. Consder a portfolo

More information

1. Fundamentals of probability theory 2. Emergence of communication traffic 3. Stochastic & Markovian Processes (SP & MP)

1. Fundamentals of probability theory 2. Emergence of communication traffic 3. Stochastic & Markovian Processes (SP & MP) 6.3 / -- Communcaton Networks II (Görg) SS20 -- www.comnets.un-bremen.de Communcaton Networks II Contents. Fundamentals of probablty theory 2. Emergence of communcaton traffc 3. Stochastc & Markovan Processes

More information

Mooring Pattern Optimization using Genetic Algorithms

Mooring Pattern Optimization using Genetic Algorithms 6th World Congresses of Structural and Multdscplnary Optmzaton Ro de Janero, 30 May - 03 June 005, Brazl Moorng Pattern Optmzaton usng Genetc Algorthms Alonso J. Juvnao Carbono, Ivan F. M. Menezes Luz

More information

Project Networks With Mixed-Time Constraints

Project Networks With Mixed-Time Constraints Project Networs Wth Mxed-Tme Constrants L Caccetta and B Wattananon Western Australan Centre of Excellence n Industral Optmsaton (WACEIO) Curtn Unversty of Technology GPO Box U1987 Perth Western Australa

More information

The Noether Theorems: from Noether to Ševera

The Noether Theorems: from Noether to Ševera 14th Internatonal Summer School n Global Analyss and Mathematcal Physcs Satellte Meetng of the XVI Internatonal Congress on Mathematcal Physcs *** Lectures of Yvette Kosmann-Schwarzbach Centre de Mathématques

More information

Application of Quasi Monte Carlo methods and Global Sensitivity Analysis in finance

Application of Quasi Monte Carlo methods and Global Sensitivity Analysis in finance Applcaton of Quas Monte Carlo methods and Global Senstvty Analyss n fnance Serge Kucherenko, Nlay Shah Imperal College London, UK skucherenko@mperalacuk Daro Czraky Barclays Captal DaroCzraky@barclayscaptalcom

More information

Recurrence. 1 Definitions and main statements

Recurrence. 1 Definitions and main statements Recurrence 1 Defntons and man statements Let X n, n = 0, 1, 2,... be a MC wth the state space S = (1, 2,...), transton probabltes p j = P {X n+1 = j X n = }, and the transton matrx P = (p j ),j S def.

More information

INTERACTING BANKS OF BAYESIAN MATCHED FILTERS

INTERACTING BANKS OF BAYESIAN MATCHED FILTERS SPIE Proceedngs: Sgnal and Data Processng of Small Targets, Vol. 4048, Orlando, FL, 2000. INTERACTING BANKS OF BAYESIAN MATCHED FILTERS B. L. Rozovsk, A. Petrov, and R. B. Blažek. Center for Appled Mathematcal

More information

Solving Factored MDPs with Continuous and Discrete Variables

Solving Factored MDPs with Continuous and Discrete Variables Solvng Factored MPs wth Contnuous and screte Varables Carlos Guestrn Berkeley Research Center Intel Corporaton Mlos Hauskrecht epartment of Computer Scence Unversty of Pttsburgh Branslav Kveton Intellgent

More information

Methods for Constructing a Yield Curve

Methods for Constructing a Yield Curve Methods for Constructng a Yeld Curve Patrck S. Hagan Chef Investment Offce, JP Morgan Wood Street London, EC2V 7AN, England, e-mal: patrck.s.hagan@jpmorgan.com Graeme West Fnancal Modellng Agency, 9 Frst

More information

How To Solve A Problem In A Powerline (Powerline) With A Powerbook (Powerbook)

How To Solve A Problem In A Powerline (Powerline) With A Powerbook (Powerbook) MIT 8.996: Topc n TCS: Internet Research Problems Sprng 2002 Lecture 7 March 20, 2002 Lecturer: Bran Dean Global Load Balancng Scrbe: John Kogel, Ben Leong In today s lecture, we dscuss global load balancng

More information

Adaptive Fractal Image Coding in the Frequency Domain

Adaptive Fractal Image Coding in the Frequency Domain PROCEEDINGS OF INTERNATIONAL WORKSHOP ON IMAGE PROCESSING: THEORY, METHODOLOGY, SYSTEMS AND APPLICATIONS 2-22 JUNE,1994 BUDAPEST,HUNGARY Adaptve Fractal Image Codng n the Frequency Doman K AI UWE BARTHEL

More information

Lecture 2: Single Layer Perceptrons Kevin Swingler

Lecture 2: Single Layer Perceptrons Kevin Swingler Lecture 2: Sngle Layer Perceptrons Kevn Sngler kms@cs.str.ac.uk Recap: McCulloch-Ptts Neuron Ths vastly smplfed model of real neurons s also knon as a Threshold Logc Unt: W 2 A Y 3 n W n. A set of synapses

More information

A fast method for binary programming using first-order derivatives, with application to topology optimization with buckling constraints

A fast method for binary programming using first-order derivatives, with application to topology optimization with buckling constraints INTERNATIONAL JOURNAL FOR NUMERICAL METHODS IN ENGINEERING Int. J. Numer. Meth. Engng (2012) Publshed onlne n Wley Onlne Lbrary (wleyonlnelbrary.com)..4367 A fast method for bnary programmng usng frst-order

More information

SPEE Recommended Evaluation Practice #6 Definition of Decline Curve Parameters Background:

SPEE Recommended Evaluation Practice #6 Definition of Decline Curve Parameters Background: SPEE Recommended Evaluaton Practce #6 efnton of eclne Curve Parameters Background: The producton hstores of ol and gas wells can be analyzed to estmate reserves and future ol and gas producton rates and

More information

On fourth order simultaneously zero-finding method for multiple roots of complex polynomial equations 1

On fourth order simultaneously zero-finding method for multiple roots of complex polynomial equations 1 General Mathematcs Vol. 6, No. 3 (2008), 9 3 On fourth order smultaneously zero-fndng method for multple roots of complex polynomal euatons Nazr Ahmad Mr and Khald Ayub Abstract In ths paper, we present

More information

What is Candidate Sampling

What is Candidate Sampling What s Canddate Samplng Say we have a multclass or mult label problem where each tranng example ( x, T ) conssts of a context x a small (mult)set of target classes T out of a large unverse L of possble

More information

PREDICTION OF MISSING DATA IN CARDIOTOCOGRAMS USING THE EXPECTATION MAXIMIZATION ALGORITHM

PREDICTION OF MISSING DATA IN CARDIOTOCOGRAMS USING THE EXPECTATION MAXIMIZATION ALGORITHM 18-19 October 2001, Hotel Kontokal Bay, Corfu PREDICTIO OF MISSIG DATA I CARDIOTOCOGRAMS USIG THE EXPECTATIO MAXIMIZATIO ALGORITHM G. okas Department of Electrcal and Computer Engneerng, Unversty of Patras,

More information

Loop Parallelization

Loop Parallelization - - Loop Parallelzaton C-52 Complaton steps: nested loops operatng on arrays, sequentell executon of teraton space DECLARE B[..,..+] FOR I :=.. FOR J :=.. I B[I,J] := B[I-,J]+B[I-,J-] ED FOR ED FOR analyze

More information

Causal, Explanatory Forecasting. Analysis. Regression Analysis. Simple Linear Regression. Which is Independent? Forecasting

Causal, Explanatory Forecasting. Analysis. Regression Analysis. Simple Linear Regression. Which is Independent? Forecasting Causal, Explanatory Forecastng Assumes cause-and-effect relatonshp between system nputs and ts output Forecastng wth Regresson Analyss Rchard S. Barr Inputs System Cause + Effect Relatonshp The job of

More information

Quantization Effects in Digital Filters

Quantization Effects in Digital Filters Quantzaton Effects n Dgtal Flters Dstrbuton of Truncaton Errors In two's complement representaton an exact number would have nfntely many bts (n general). When we lmt the number of bts to some fnte value

More information

Energies of Network Nastsemble

Energies of Network Nastsemble Supplementary materal: Assessng the relevance of node features for network structure Gnestra Bancon, 1 Paolo Pn,, 3 and Matteo Marsl 1 1 The Abdus Salam Internatonal Center for Theoretcal Physcs, Strada

More information

Lecture 5,6 Linear Methods for Classification. Summary

Lecture 5,6 Linear Methods for Classification. Summary Lecture 5,6 Lnear Methods for Classfcaton Rce ELEC 697 Farnaz Koushanfar Fall 2006 Summary Bayes Classfers Lnear Classfers Lnear regresson of an ndcator matrx Lnear dscrmnant analyss (LDA) Logstc regresson

More information

Brigid Mullany, Ph.D University of North Carolina, Charlotte

Brigid Mullany, Ph.D University of North Carolina, Charlotte Evaluaton And Comparson Of The Dfferent Standards Used To Defne The Postonal Accuracy And Repeatablty Of Numercally Controlled Machnng Center Axes Brgd Mullany, Ph.D Unversty of North Carolna, Charlotte

More information

IMPACT ANALYSIS OF A CELLULAR PHONE

IMPACT ANALYSIS OF A CELLULAR PHONE 4 th ASA & μeta Internatonal Conference IMPACT AALYSIS OF A CELLULAR PHOE We Lu, 2 Hongy L Bejng FEAonlne Engneerng Co.,Ltd. Bejng, Chna ABSTRACT Drop test smulaton plays an mportant role n nvestgatng

More information

Working Paper An estimator for the quadratic covariation of asynchronously observed Itô processes with noise: Asymptotic distribution theory

Working Paper An estimator for the quadratic covariation of asynchronously observed Itô processes with noise: Asymptotic distribution theory econstor www.econstor.eu Der Open-Access-Publkatonsserver der ZBW Lebnz-Informatonszentrum Wrtschaft he Open Access Publcaton Server of the ZBW Lebnz Informaton Centre for Economcs Bbnger, Markus Workng

More information

Matrix Multiplication I

Matrix Multiplication I Matrx Multplcaton I Yuval Flmus February 2, 2012 These notes are based on a lecture gven at the Toronto Student Semnar on February 2, 2012. The materal s taen mostly from the boo Algebrac Complexty Theory

More information

INSTITUT FÜR INFORMATIK

INSTITUT FÜR INFORMATIK INSTITUT FÜR INFORMATIK Schedulng jobs on unform processors revsted Klaus Jansen Chrstna Robene Bercht Nr. 1109 November 2011 ISSN 2192-6247 CHRISTIAN-ALBRECHTS-UNIVERSITÄT ZU KIEL Insttut für Informat

More information

Stability, observer design and control of networks using Lyapunov methods

Stability, observer design and control of networks using Lyapunov methods Stablty, observer desgn and control of networks usng Lyapunov methods von Lars Naujok Dssertaton zur Erlangung des Grades enes Doktors der Naturwssenschaften - Dr. rer. nat. - Vorgelegt m Fachberech 3

More information

A Prefix Code Matching Parallel Load-Balancing Method for Solution-Adaptive Unstructured Finite Element Graphs on Distributed Memory Multicomputers

A Prefix Code Matching Parallel Load-Balancing Method for Solution-Adaptive Unstructured Finite Element Graphs on Distributed Memory Multicomputers Ž. The Journal of Supercomputng, 15, 25 49 2000 2000 Kluwer Academc Publshers. Manufactured n The Netherlands. A Prefx Code Matchng Parallel Load-Balancng Method for Soluton-Adaptve Unstructured Fnte Element

More information

Fluid Simulation Overview. Presentation Date: Sep 15 th, 2009 Chrissie C. Cui

Fluid Simulation Overview. Presentation Date: Sep 15 th, 2009 Chrissie C. Cui Fld Smlaton Overvew Presentaton Date: Sep 5 th, 2009 Chrsse C. C Introdcton Fld Characterstcs Otlne Naver-Stokes Eqaton Eleran vs. Lagragan approach Fld Smlaton Stages Sold Fld Coplng Read-tme flds Introdcton

More information

Analysis of Reactivity Induced Accident for Control Rods Ejection with Loss of Cooling

Analysis of Reactivity Induced Accident for Control Rods Ejection with Loss of Cooling Analyss of Reactvty Induced Accdent for Control Rods Ejecton wth Loss of Coolng Hend Mohammed El Sayed Saad 1, Hesham Mohammed Mohammed Mansour 2 Wahab 1 1. Nuclear and Radologcal Regulatory Authorty,

More information

Luby s Alg. for Maximal Independent Sets using Pairwise Independence

Luby s Alg. for Maximal Independent Sets using Pairwise Independence Lecture Notes for Randomzed Algorthms Luby s Alg. for Maxmal Independent Sets usng Parwse Independence Last Updated by Erc Vgoda on February, 006 8. Maxmal Independent Sets For a graph G = (V, E), an ndependent

More information

Extending Probabilistic Dynamic Epistemic Logic

Extending Probabilistic Dynamic Epistemic Logic Extendng Probablstc Dynamc Epstemc Logc Joshua Sack May 29, 2008 Probablty Space Defnton A probablty space s a tuple (S, A, µ), where 1 S s a set called the sample space. 2 A P(S) s a σ-algebra: a set

More information

Level Annuities with Payments Less Frequent than Each Interest Period

Level Annuities with Payments Less Frequent than Each Interest Period Level Annutes wth Payments Less Frequent than Each Interest Perod 1 Annuty-mmedate 2 Annuty-due Level Annutes wth Payments Less Frequent than Each Interest Perod 1 Annuty-mmedate 2 Annuty-due Symoblc approach

More information

MARS Model of Biom deformable Markets and Autopilot actuators

MARS Model of Biom deformable Markets and Autopilot actuators Deformable mrror model for open-loop adaptve optcs usng multvarate adaptve regresson splnes Dan Guzmán, 1, 2,* Francsco Javer de Cos Juez, 3 Fernando Sánchez Lasheras 4 Rchard Myers 1 and Laura Young 1

More information

1. Introduction to CFD

1. Introduction to CFD . Introdcton to CFD Ths s a qck ntrodcton to the basc concepts nderlyng CFD. The concepts are llstrated by applyng them to a smple D example. We dscss the followng topcs brefly:. Applcatons of CFD. The

More information

Modern Problem Solving Techniques in Engineering with POLYMATH, Excel and MATLAB. Introduction

Modern Problem Solving Techniques in Engineering with POLYMATH, Excel and MATLAB. Introduction Modern Problem Solvng Tehnques n Engneerng wth POLYMATH, Exel and MATLAB. Introduton Engneers are fundamentally problem solvers, seekng to aheve some objetve or desgn among tehnal, soal eonom, regulatory

More information

Modelling of Web Domain Visits by Radial Basis Function Neural Networks and Support Vector Machine Regression

Modelling of Web Domain Visits by Radial Basis Function Neural Networks and Support Vector Machine Regression Modellng of Web Doman Vsts by Radal Bass Functon Neural Networks and Support Vector Machne Regresson Vladmír Olej, Jana Flpová Insttute of System Engneerng and Informatcs Faculty of Economcs and Admnstraton,

More information

) of the Cell class is created containing information about events associated with the cell. Events are added to the Cell instance

) of the Cell class is created containing information about events associated with the cell. Events are added to the Cell instance Calbraton Method Instances of the Cell class (one nstance for each FMS cell) contan ADC raw data and methods assocated wth each partcular FMS cell. The calbraton method ncludes event selecton (Class Cell

More information

The Application of Fractional Brownian Motion in Option Pricing

The Application of Fractional Brownian Motion in Option Pricing Vol. 0, No. (05), pp. 73-8 http://dx.do.org/0.457/jmue.05.0..6 The Applcaton of Fractonal Brownan Moton n Opton Prcng Qng-xn Zhou School of Basc Scence,arbn Unversty of Commerce,arbn zhouqngxn98@6.com

More information

GIS: data processing. 3.1.1. Example of spatial queries. 3.1 Spatial queries. Chapter III. Geographic Information Systems: Data Processing

GIS: data processing. 3.1.1. Example of spatial queries. 3.1 Spatial queries. Chapter III. Geographic Information Systems: Data Processing Vsal Informaton Systems Pr. Robert Larn GIS: data processng Chapter III Geographc Informaton Systems: Data Processng 3.1 Spatal qeres 3. Introdcton to Spatal nalyss 3.3 Spatal ndexng 3. Updatng 3. Conclsons

More information

Capturing Dynamics in the Power Grid: Formulation of Dynamic State Estimation through Data Assimilation

Capturing Dynamics in the Power Grid: Formulation of Dynamic State Estimation through Data Assimilation PNNL-2323 Prepared for the U.S. Department of Energy under Contract DE-AC5-76RL83 Capturng Dynamcs n the Power Grd: Formulaton of Dynamc State Estmaton through Data Assmlaton N Zhou Z Huang D Meng S Elbert

More information

On the Approximation Error of Mean-Field Models

On the Approximation Error of Mean-Field Models On the Approxmaton Error of Mean-Feld Models Le Yng School of Electrcal, Computer and Energy Engneerng Arzona State Unversty Tempe, AZ 85287 le.yng.2@asu.edu ABSTRACT Mean-feld models have been used to

More information

Dscrete-Tme Approxmatons of the Holmstrom-Mlgrom Brownan-Moton Model of Intertemporal Incentve Provson 1 Martn Hellwg Unversty of Mannhem Klaus M. Schmdt Unversty of Munch and CEPR Ths verson: May 5, 1998

More information

Risk-based Fatigue Estimate of Deep Water Risers -- Course Project for EM388F: Fracture Mechanics, Spring 2008

Risk-based Fatigue Estimate of Deep Water Risers -- Course Project for EM388F: Fracture Mechanics, Spring 2008 Rsk-based Fatgue Estmate of Deep Water Rsers -- Course Project for EM388F: Fracture Mechancs, Sprng 2008 Chen Sh Department of Cvl, Archtectural, and Envronmental Engneerng The Unversty of Texas at Austn

More information

Face Verification Problem. Face Recognition Problem. Application: Access Control. Biometric Authentication. Face Verification (1:1 matching)

Face Verification Problem. Face Recognition Problem. Application: Access Control. Biometric Authentication. Face Verification (1:1 matching) Face Recognton Problem Face Verfcaton Problem Face Verfcaton (1:1 matchng) Querymage face query Face Recognton (1:N matchng) database Applcaton: Access Control www.vsage.com www.vsoncs.com Bometrc Authentcaton

More information

Regression Models for a Binary Response Using EXCEL and JMP

Regression Models for a Binary Response Using EXCEL and JMP SEMATECH 997 Statstcal Methods Symposum Austn Regresson Models for a Bnary Response Usng EXCEL and JMP Davd C. Trndade, Ph.D. STAT-TECH Consultng and Tranng n Appled Statstcs San Jose, CA Topcs Practcal

More information

n + d + q = 24 and.05n +.1d +.25q = 2 { n + d + q = 24 (3) n + 2d + 5q = 40 (2)

n + d + q = 24 and.05n +.1d +.25q = 2 { n + d + q = 24 (3) n + 2d + 5q = 40 (2) MATH 16T Exam 1 : Part I (In-Class) Solutons 1. (0 pts) A pggy bank contans 4 cons, all of whch are nckels (5 ), dmes (10 ) or quarters (5 ). The pggy bank also contans a con of each denomnaton. The total

More information

Computers and Mathematics with Applications. POD reduced-order unstructured mesh modeling applied to 2D and 3D fluid flow

Computers and Mathematics with Applications. POD reduced-order unstructured mesh modeling applied to 2D and 3D fluid flow Computers and Mathematcs wth Applcatons 65 (2013) 362 379 Contents lsts avalable at ScVerse ScenceDrect Computers and Mathematcs wth Applcatons journal homepage: www.elsever.com/locate/camwa POD reduced-order

More information

SMOOTH TRAJECTORY PLANNING ALGORITHMS FOR INDUSTRIAL ROBOTS: AN EXPERIMENTAL EVALUATION

SMOOTH TRAJECTORY PLANNING ALGORITHMS FOR INDUSTRIAL ROBOTS: AN EXPERIMENTAL EVALUATION 1. Albano LANZUTTI SMOOTH TRAJECTORY PLANNING ALGORITHMS FOR INDUSTRIAL ROBOTS: AN EXPERIMENTAL EVALUATION 1. DIPARTIMENTO DI INGEGNERIA ELETTRICA, GESTIONALE E MECCANICA UNIVERSITA' DI UDINE, UDINE ITALY

More information

ESTIMATION OF RELAXATION AND THERMALIZATION TIMES IN MICROSCALE HEAT TRANSFER MODEL

ESTIMATION OF RELAXATION AND THERMALIZATION TIMES IN MICROSCALE HEAT TRANSFER MODEL JOURNAL OF THEORETICAL AND APPLIED MECHANICS 51, 4, pp. 837-845, Warsaw 2013 ESTIMATION OF RELAXATION AND THERMALIZATION TIMES IN MICROSCALE HEAT TRANSFER MODEL Bohdan Mochnack Częstochowa Unversty of

More information