Numerical Methods for Civil Engineers. Lecture 10 Ordinary Differential Equations. Ordinary Differential Equations. d x dx.

Μέγεθος: px
Εμφάνιση ξεκινά από τη σελίδα:

Download "Numerical Methods for Civil Engineers. Lecture 10 Ordinary Differential Equations. Ordinary Differential Equations. d x dx."

Transcript

1 Numerical Metods for Civil Engineers Lecture Ordinar Differential Equations -Basic Ideas -Euler s Metod -Higer Order One-step Metods -Predictor-Corrector Approac -Runge-Kutta Metods -Adaptive Stepsize Algoritms S U R A N A R E E UNIVERSITY OF TECHNOLOGY Mongkol JIRAVACHARADET INSTITUTE OF ENGINEERING SCHOOL OF CIVIL ENGINEERING Ordinar Differential Equations Rate of cange of one variable wit respect to anoter. were d dt = t = independent variable =dependent variable f(, t ) Initial Condition (t )= k Example: Mass-spring sstem c m d x dx ma + cv + kx = m c kx dt + dt + = x

2 EULER S S METHOD From Talor series: ( t t) t () = t ( ) + ( t t) ( t) + ( t) +L! Retaining onl first derivative: t () = + f( t, ) were =(t -t ), = (t ),and f(t, )= (t ) t t Predict True New value =Old value +slope x step size t error = + f( t, ) = + f ( t, ) = + f( t, ) i i i i Example: Manual Calculation wit Euler smetod d t, () dt = = 5 4 t Exact solution: = ( t + e ) Set =. t i f (t i-, i- ) Euler i = i- + f (t i-, i- ) Exact Error NA -() =-..-(.6) =-..4-(.4) =-.4 initial cond. =..+.(-.) =.6.6+.(-.) =.4.4+.(-.4) =

3 Implementing Euler s Metod odeeuler.m function [t,] = odeeuler(diffeq,tn,,) % Input: diffeq = (string) name of m-file tat % evaluate rigt and side of ODE % tn = stopping value of independent variable % = stepsize % = initial condition at t= t = (::tn) ; n = lengt(t); = *ones(n,); for i=:n (i) = (i-)+*feval(diffeq,t(i-),(i-)); end d Example: t, (),. dt = = = rs.m function ddt = rs(t,) ddt = t-*; >> [t,] = odeeuler( rs,.6,.,.) t = =

4 Exact Solution : >> = (/4)*(*t-ones(size(t))+5*exp(-*t)) = >> t=:.:.6; >> = (/4)*(*t-ones(size(t))+5*exp(-*t)); >> plot(t,,t,) Improvements of Euler s Metod Heun s Metod: estimate slope from derivatives at te beginning and at te end of te interval. Euler: i = i- + k slope: k = f(t i, i) slope: k = f(t i-, i- ) t i- t i t

5 Average slope k + k f ( ti, i ) + f ( ti, = = i ) i = i k + k + Use slope: (k + k )/ t i- t i t Heun s Metod d f(, t ) k = f( t, ) i i dt = i k = f( t +, + k ) i i k = + i i + k Euler Heun True i- t i- t i

6 Predictor-Corrector Approac Heun smetod: k = f( t, ) i i k = f( t +, + k ) i i k = + i i + k Euler smetod: = + f( t, ) i i i i Predictor: i = i + f( ti, i ) Corrector: f t f t i = i + ( i, i ) + ( i, i ) Iterating te Corrector of Heun s Metod To improve te estimation i f t f t i + ( i, i ) + ( i, i )

7 Example: Use Heun smetod to integrate From x =to 4,step size = = e =.8x 4.5, () 4 = e e + e.3 Analtical solution: ( ) Predictor, i = i + f( ti, i ) = + (4e.5()) = 5.8 x.5 x.5 x Corrector, = + i i f t f t ( i, i ) + ( i, i ).8() (4e.5()) + (4e.5(5)) = + = ().5().5() = e e + e = True value: ( ) Relative error, E t = % = 8.8% nd Corrector, = + rd 3 Corrector,.8() (4e.5()) + (4e.5(6.7)) = 6.758, E =.3% t + = + = 6.38, E = 3.3% Error ma increases for large step sizes..8() (4e.5()) (4e.5(6.758)) t

8 Iteration using up-arrow in MATLAB >> = +*(4*exp()-.5*) % Predictor of = 5 >> = +(/)*((4*exp()-.5*)+(4*exp(.8*)-.5*)) = 6.7 % st Corrector of Press and Enter = 6.7 % nd Corrector of = = 6.38 = % 3rd Corrector of % 4t Corrector of % 5t Corrector of = % until no cange MATLAB s Implementation func.m function ddx = func(x,) ddx = 4*exp(.8*x)-.5*; odeheun.m function [x,] = odeheun(diffeq,xn,,,iter) % Input: iter = number of corrector iterations x = (::xn) ; n = lengt(x); = *ones(n,); for i=:n (i) = (i-)+*feval(diffeq,x(i-),(i-)); for j=:iter end end (i) = (i-)+*(feval(diffeq,x(i-),(i-))... + feval(diffeq,x(i),(i)))/;

9 For x =to 4,step size =, () =,Iteration =5 >> [x,] = odeheun( func,4,,,5) x = = _true = Et = Compare wit Euler smetod: >> [x,] = odeeuler( func,4,,) x = = Et =

10 Comparison of True Solution wit Euler sand Heun s Metod >> xtrue = (:.:4) ; >> true =(4/.3)*(exp(.8*xtrue)-exp(-.5*xtrue))... + *exp(-.5*xtrue); >> [xeuler,euler] = odeeuler( func,4,,); >> [xeun,eun] = odeheun( func,4,,,5); >> plot(xtrue,true,xeuler,euler, o,xeun,eun, + ) 8 6 True Euler Heun x RUNGE-KUTTA (RK) METHODS General Formula using Weigted Average of slopes m γ k = + i i l l l= For Heun smetod γ = γ =.5 Te weigts must satisf m l= γ l = Second-Order RK (Ralston s)metod: i = + k + k 3 3 k = f( x, ) i i i 3 3 k = f xi +, i + k 4 4

11 Tird-Order Runge-Kutta Metods were i = + k + k + k 6 k = f( x, ) i i ( 4 ) i 3 k = f xi +, i + k k = f x + k+ k (, ) 3 i i Fout-Order Runge-Kutta Metods Te most popular RK metods Classical 4t-order RK: were k = f( x, ) i i k = f xi +, i + k k3 = f xi +, i + k k = f x + + k (, ) 4 i i 3 i = + k + k + k + k 6 ( ) i 3 4

12 Example: Use 4t-order RK metod to integrate = e = From x =to 4,step size = Step : x =, =.8x 4.5, () k k k k 3 4 = e = 4.5() 3 = + = = + = = e + =.8(.5) 4e.5( 3 ) (.5) 4e.5( 4.73 ) () 4.5( 3.93 ) = = 6. ( ) 4.8().5().5() = e e + e = True value: ( ) Relative error, E t = % =.38% 6.946

13 MATLAB s Implementation oderk4.m function [x,] = oderk4(diffeq,xn,,) x = (::xn) ; n = lengt(x); = *ones(n,); for i=:n k = feval(diffeq,x(i-),(i-)); k = feval(diffeq,x(i-)+/,(i-)+k*/); k3 = feval(diffeq,x(i-)+/,(i-)+k*/); k4 = feval(diffeq,x(i-)+,(i-)+k3*); (i) = (i-)+/6*(k+*k+*k3+k4); end For x =to 4,step size =, () =,Iteration =5 >> [x,] = oderk4( func,4,,) x = = _true = Et(%) =

14 Adaptive Stepsize Algoritms MATLAB s ode3 and ode45 Routines ode3 use second-and tird-order RK simultaneousl ode45 use fourt-and fift-order RK simultaneousl Example: For x =to 4, ()=.8x = 4e.5, () = func.m >> x = ; xn = 4; = ; >> [x45,45] = ode45( func,[x,xn],); >> xtrue = (:.:4) ; >> true =(4/.3)*(exp(.8*xtrue)... - exp(-.5*xtrue))+ *exp(-.5*xtrue); >> plot(xtrue,true,x45,45)

ES440/ES911: CFD. Chapter 5. Solution of Linear Equation Systems

ES440/ES911: CFD. Chapter 5. Solution of Linear Equation Systems ES440/ES911: CFD Chapter 5. Solution of Linear Equation Systems Dr Yongmann M. Chung http://www.eng.warwick.ac.uk/staff/ymc/es440.html Y.M.Chung@warwick.ac.uk School of Engineering & Centre for Scientific

Διαβάστε περισσότερα

Fourier Series. MATH 211, Calculus II. J. Robert Buchanan. Spring Department of Mathematics

Fourier Series. MATH 211, Calculus II. J. Robert Buchanan. Spring Department of Mathematics Fourier Series MATH 211, Calculus II J. Robert Buchanan Department of Mathematics Spring 2018 Introduction Not all functions can be represented by Taylor series. f (k) (c) A Taylor series f (x) = (x c)

Διαβάστε περισσότερα

ΕΡΓΑΣΤΗΡΙΑΚΕΣ ΑΣΚΗΣΕΙΣ

ΕΡΓΑΣΤΗΡΙΑΚΕΣ ΑΣΚΗΣΕΙΣ ΑΡΙΘΜΗΤΙΚΗ ΑΝΑΛΥΣΗ ΙΙ ΕΡΓΑΣΤΗΡΙΑΚΕΣ ΑΣΚΗΣΕΙΣ. ΜΗΤΣΟΤΑΚΗΣ ΑΘΗΝΑ 27 ΠΑΡΑ ΕΙΓΜΑ : ΜΕΘΟ ΟΣ NEWTON Πρόγραµµα Matlab για την προσέγγιση της ρίζας της εξίσωσης f(x)= µε την µέθοδο Newton. Συναρτήσεις f(x), f

Διαβάστε περισσότερα

High order interpolation function for surface contact problem

High order interpolation function for surface contact problem 3 016 5 Journal of East China Normal University Natural Science No 3 May 016 : 1000-564101603-0009-1 1 1 1 00444; E- 00030 : Lagrange Lobatto Matlab : ; Lagrange; : O41 : A DOI: 103969/jissn1000-56410160300

Διαβάστε περισσότερα

Homework 3 Solutions

Homework 3 Solutions Homework 3 Solutions Igor Yanovsky (Math 151A TA) Problem 1: Compute the absolute error and relative error in approximations of p by p. (Use calculator!) a) p π, p 22/7; b) p π, p 3.141. Solution: For

Διαβάστε περισσότερα

Radiation Stress Concerned with the force (or momentum flux) exerted on the right hand side of a plane by water on the left hand side of the plane.

Radiation Stress Concerned with the force (or momentum flux) exerted on the right hand side of a plane by water on the left hand side of the plane. upplement on Radiation tress and Wave etup/et down Radiation tress oncerned wit te force (or momentum flu) eerted on te rit and side of a plane water on te left and side of te plane. plane z "Radiation

Διαβάστε περισσότερα

ECE570 Lecture 6: Rewrite Systems

ECE570 Lecture 6: Rewrite Systems ECE570 Lecture 6: Rewrite Systems Jeffrey Mark Siskind School of Electrical and Computer Engineering Fall 2017 Siskind (Purdue ECE) ECE570 Lecture 6: Rewrite Systems Fall 2017 1 / 18 Simplification Rules

Διαβάστε περισσότερα

Chapter 6: Systems of Linear Differential. be continuous functions on the interval

Chapter 6: Systems of Linear Differential. be continuous functions on the interval Chapter 6: Systems of Linear Differential Equations Let a (t), a 2 (t),..., a nn (t), b (t), b 2 (t),..., b n (t) be continuous functions on the interval I. The system of n first-order differential equations

Διαβάστε περισσότερα

The Spiral of Theodorus, Numerical Analysis, and Special Functions

The Spiral of Theodorus, Numerical Analysis, and Special Functions Theo p. / The Spiral of Theodorus, Numerical Analysis, and Special Functions Walter Gautschi wxg@cs.purdue.edu Purdue University Theo p. 2/ Theodorus of ca. 46 399 B.C. Theo p. 3/ spiral of Theodorus 6

Διαβάστε περισσότερα

D Alembert s Solution to the Wave Equation

D Alembert s Solution to the Wave Equation D Alembert s Solution to the Wave Equation MATH 467 Partial Differential Equations J. Robert Buchanan Department of Mathematics Fall 2018 Objectives In this lesson we will learn: a change of variable technique

Διαβάστε περισσότερα

CHAPTER 25 SOLVING EQUATIONS BY ITERATIVE METHODS

CHAPTER 25 SOLVING EQUATIONS BY ITERATIVE METHODS CHAPTER 5 SOLVING EQUATIONS BY ITERATIVE METHODS EXERCISE 104 Page 8 1. Find the positive root of the equation x + 3x 5 = 0, correct to 3 significant figures, using the method of bisection. Let f(x) =

Διαβάστε περισσότερα

HW 3 Solutions 1. a) I use the auto.arima R function to search over models using AIC and decide on an ARMA(3,1)

HW 3 Solutions 1. a) I use the auto.arima R function to search over models using AIC and decide on an ARMA(3,1) HW 3 Solutions a) I use the autoarima R function to search over models using AIC and decide on an ARMA3,) b) I compare the ARMA3,) to ARMA,0) ARMA3,) does better in all three criteria c) The plot of the

Διαβάστε περισσότερα

Exercises 10. Find a fundamental matrix of the given system of equations. Also find the fundamental matrix Φ(t) satisfying Φ(0) = I. 1.

Exercises 10. Find a fundamental matrix of the given system of equations. Also find the fundamental matrix Φ(t) satisfying Φ(0) = I. 1. Exercises 0 More exercises are available in Elementary Differential Equations. If you have a problem to solve any of them, feel free to come to office hour. Problem Find a fundamental matrix of the given

Διαβάστε περισσότερα

ΣΥΝΗΘΕΙΣ ΔΙΑΦΟΡΙΚΕΣ ΕΞΙΣΩΣΕΙΣ ΣΤΗ MATLAB

ΣΥΝΗΘΕΙΣ ΔΙΑΦΟΡΙΚΕΣ ΕΞΙΣΩΣΕΙΣ ΣΤΗ MATLAB ΣΥΝΗΘΕΙΣ ΔΙΑΦΟΡΙΚΕΣ ΕΞΙΣΩΣΕΙΣ ΣΤΗ MATLAB 1. Γενικά περί συνήθων διαφορικών εξισώσεων Μια συνήθης διαφορική εξίσωση (Σ.Δ.Ε.) 1 ης τάξης έχει τη μορφή dy dt f ( t, y( t)) όπου η συνάρτηση f(t, y) είναι γνωστή,

Διαβάστε περισσότερα

Chapter 6: Systems of Linear Differential. be continuous functions on the interval

Chapter 6: Systems of Linear Differential. be continuous functions on the interval Chapter 6: Systems of Linear Differential Equations Let a (t), a 2 (t),..., a nn (t), b (t), b 2 (t),..., b n (t) be continuous functions on the interval I. The system of n first-order differential equations

Διαβάστε περισσότερα

Statistics 104: Quantitative Methods for Economics Formula and Theorem Review

Statistics 104: Quantitative Methods for Economics Formula and Theorem Review Harvard College Statistics 104: Quantitative Methods for Economics Formula and Theorem Review Tommy MacWilliam, 13 tmacwilliam@college.harvard.edu March 10, 2011 Contents 1 Introduction to Data 5 1.1 Sample

Διαβάστε περισσότερα

Summary of the model specified

Summary of the model specified Program: HLM 7 Hierarchical Linear and Nonlinear Modeling Authors: Stephen Raudenbush, Tony Bryk, & Richard Congdon Publisher: Scientific Software International, Inc. (c) 2010 techsupport@ssicentral.com

Διαβάστε περισσότερα

- 1+x 2 - x 3 + 7x4. 40 + 127x8. 12 - x5 4 + 31x6. 360 - x 7. - 1+x 2 - x 3 - -

- 1+x 2 - x 3 + 7x4. 40 + 127x8. 12 - x5 4 + 31x6. 360 - x 7. - 1+x 2 - x 3 - - a.bergara@ehu.es - 1 x 2 - - - - - - - Ο - 1x 2 - x 3 - - - - - - 1 x 2 - x 3 7 x4 12-1x 2 - x 3 7x4 12 - x5 4 31x6 360 - x 7 40 127x8 20160 - - - Ο clear; % Coefficients of the equation: a x'b x c

Διαβάστε περισσότερα

Second Order RLC Filters

Second Order RLC Filters ECEN 60 Circuits/Electronics Spring 007-0-07 P. Mathys Second Order RLC Filters RLC Lowpass Filter A passive RLC lowpass filter (LPF) circuit is shown in the following schematic. R L C v O (t) Using phasor

Διαβάστε περισσότερα

Section 8.3 Trigonometric Equations

Section 8.3 Trigonometric Equations 99 Section 8. Trigonometric Equations Objective 1: Solve Equations Involving One Trigonometric Function. In this section and the next, we will exple how to solving equations involving trigonometric functions.

Διαβάστε περισσότερα

Aquinas College. Edexcel Mathematical formulae and statistics tables DO NOT WRITE ON THIS BOOKLET

Aquinas College. Edexcel Mathematical formulae and statistics tables DO NOT WRITE ON THIS BOOKLET Aquinas College Edexcel Mathematical formulae and statistics tables DO NOT WRITE ON THIS BOOKLET Pearson Edexcel Level 3 Advanced Subsidiary and Advanced GCE in Mathematics and Further Mathematics Mathematical

Διαβάστε περισσότερα

Differential equations

Differential equations Differential equations Differential equations: An equation inoling one dependent ariable and its deriaties w. r. t one or more independent ariables is called a differential equation. Order of differential

Διαβάστε περισσότερα

Discontinuous Hermite Collocation and Diagonally Implicit RK3 for a Brain Tumour Invasion Model

Discontinuous Hermite Collocation and Diagonally Implicit RK3 for a Brain Tumour Invasion Model 1 Discontinuous Hermite Collocation and Diagonally Implicit RK3 for a Brain Tumour Invasion Model John E. Athanasakis Applied Mathematics & Computers Laboratory Technical University of Crete Chania 73100,

Διαβάστε περισσότερα

GAUSS-LAGUERRE AND GAUSS-HERMITE QUADRATURE ON 64, 96 AND 128 NODES

GAUSS-LAGUERRE AND GAUSS-HERMITE QUADRATURE ON 64, 96 AND 128 NODES GAUSS-LAGUERRE AND GAUSS-HERMITE QUADRATURE ON 64, 96 AND 128 NODES RICHARD J. MATHAR Abstract. The manuscript provides tables of abscissae and weights for Gauss- Laguerre integration on 64, 96 and 128

Διαβάστε περισσότερα

6.3 Forecasting ARMA processes

6.3 Forecasting ARMA processes 122 CHAPTER 6. ARMA MODELS 6.3 Forecasting ARMA processes The purpose of forecasting is to predict future values of a TS based on the data collected to the present. In this section we will discuss a linear

Διαβάστε περισσότερα

RECIPROCATING COMPRESSOR CALCULATION SHEET ISOTHERMAL COMPRESSION Gas properties, flowrate and conditions. Compressor Calculation Sheet

RECIPROCATING COMPRESSOR CALCULATION SHEET ISOTHERMAL COMPRESSION Gas properties, flowrate and conditions. Compressor Calculation Sheet RECIPRCATING CMPRESSR CALCULATIN SHEET ISTHERMAL CMPRESSIN Gas properties, flowrate and conditions 1 Gas name Air Item or symbol Quantity Unit Item or symbol Quantity Unit Formula 2 Suction pressure, ps

Διαβάστε περισσότερα

Linearized Lifting Surface Theory Thin-Wing Theory

Linearized Lifting Surface Theory Thin-Wing Theory 13.021 Marine Hdrodnamics Lecture 23 Copright c 2001 MIT - Department of Ocean Engineering, All rights reserved. 13.021 - Marine Hdrodnamics Lecture 23 Linearized Lifting Surface Theor Thin-Wing Theor

Διαβάστε περισσότερα

Απόκριση σε Μοναδιαία Ωστική Δύναμη (Unit Impulse) Απόκριση σε Δυνάμεις Αυθαίρετα Μεταβαλλόμενες με το Χρόνο. Απόστολος Σ.

Απόκριση σε Μοναδιαία Ωστική Δύναμη (Unit Impulse) Απόκριση σε Δυνάμεις Αυθαίρετα Μεταβαλλόμενες με το Χρόνο. Απόστολος Σ. Απόκριση σε Δυνάμεις Αυθαίρετα Μεταβαλλόμενες με το Χρόνο The time integral of a force is referred to as impulse, is determined by and is obtained from: Newton s 2 nd Law of motion states that the action

Διαβάστε περισσότερα

ΕΙΣΑΓΩΓΗ ΣΤΗ ΣΤΑΤΙΣΤΙΚΗ ΑΝΑΛΥΣΗ

ΕΙΣΑΓΩΓΗ ΣΤΗ ΣΤΑΤΙΣΤΙΚΗ ΑΝΑΛΥΣΗ ΕΙΣΑΓΩΓΗ ΣΤΗ ΣΤΑΤΙΣΤΙΚΗ ΑΝΑΛΥΣΗ ΕΛΕΝΑ ΦΛΟΚΑ Επίκουρος Καθηγήτρια Τµήµα Φυσικής, Τοµέας Φυσικής Περιβάλλοντος- Μετεωρολογίας ΓΕΝΙΚΟΙ ΟΡΙΣΜΟΙ Πληθυσµός Σύνολο ατόµων ή αντικειµένων στα οποία αναφέρονται

Διαβάστε περισσότερα

Homework 8 Model Solution Section

Homework 8 Model Solution Section MATH 004 Homework Solution Homework 8 Model Solution Section 14.5 14.6. 14.5. Use the Chain Rule to find dz where z cosx + 4y), x 5t 4, y 1 t. dz dx + dy y sinx + 4y)0t + 4) sinx + 4y) 1t ) 0t + 4t ) sinx

Διαβάστε περισσότερα

Higher Derivative Gravity Theories

Higher Derivative Gravity Theories Higher Derivative Gravity Theories Black Holes in AdS space-times James Mashiyane Supervisor: Prof Kevin Goldstein University of the Witwatersrand Second Mandelstam, 20 January 2018 James Mashiyane WITS)

Διαβάστε περισσότερα

forms This gives Remark 1. How to remember the above formulas: Substituting these into the equation we obtain with

forms This gives Remark 1. How to remember the above formulas: Substituting these into the equation we obtain with Week 03: C lassification of S econd- Order L inear Equations In last week s lectures we have illustrated how to obtain the general solutions of first order PDEs using the method of characteristics. We

Διαβάστε περισσότερα

SOLUTIONS TO MATH38181 EXTREME VALUES AND FINANCIAL RISK EXAM

SOLUTIONS TO MATH38181 EXTREME VALUES AND FINANCIAL RISK EXAM SOLUTIONS TO MATH38181 EXTREME VALUES AND FINANCIAL RISK EXAM Solutions to Question 1 a) The cumulative distribution function of T conditional on N n is Pr T t N n) Pr max X 1,..., X N ) t N n) Pr max

Διαβάστε περισσότερα

Statistical Inference I Locally most powerful tests

Statistical Inference I Locally most powerful tests Statistical Inference I Locally most powerful tests Shirsendu Mukherjee Department of Statistics, Asutosh College, Kolkata, India. shirsendu st@yahoo.co.in So far we have treated the testing of one-sided

Διαβάστε περισσότερα

Second Order Partial Differential Equations

Second Order Partial Differential Equations Chapter 7 Second Order Partial Differential Equations 7.1 Introduction A second order linear PDE in two independent variables (x, y Ω can be written as A(x, y u x + B(x, y u xy + C(x, y u u u + D(x, y

Διαβάστε περισσότερα

Πρόβλημα 1: Αναζήτηση Ελάχιστης/Μέγιστης Τιμής

Πρόβλημα 1: Αναζήτηση Ελάχιστης/Μέγιστης Τιμής Πρόβλημα 1: Αναζήτηση Ελάχιστης/Μέγιστης Τιμής Να γραφεί πρόγραμμα το οποίο δέχεται ως είσοδο μια ακολουθία S από n (n 40) ακέραιους αριθμούς και επιστρέφει ως έξοδο δύο ακολουθίες από θετικούς ακέραιους

Διαβάστε περισσότερα

Επιμέλεια απαντήσεων: Ιωάννης Λυχναρόπουλος

Επιμέλεια απαντήσεων: Ιωάννης Λυχναρόπουλος ΥΠΟΛΟΓΙΣΤΙΚΕΣ ΜΕΘΟΔΟΙ, 008-009, 5 Ο ΕΞΑΜΗΝΟ ΕΡΓΑΣΙΑ #: ΣΥΝΗΘΕΙΣ ΔΙΑΦΟΡΙΚΕΣ ΕΞΙΣΩΣΕΙΣ ΚΑΙ ΣΥΣΤΗΜΑΤΑ ΠΡΟΒΛΗΜΑΤΑ ΑΡΧΙΚΩΝ ΤΙΜΩΝ ΗΜΕΡΟΜΗΝΙΑ ΠΑΡΑΔΟΣΗΣ: 3.0.008 ΔΙΔΑΣΚΩΝ: Δ. Βαλουγεώργης Άσκηση Επιμέλεια απαντήσεων:

Διαβάστε περισσότερα

Computing the Macdonald function for complex orders

Computing the Macdonald function for complex orders Macdonald p. 1/1 Computing the Macdonald function for complex orders Walter Gautschi wxg@cs.purdue.edu Purdue University Macdonald p. 2/1 Integral representation K ν (x) = complex order ν = α + iβ e x

Διαβάστε περισσότερα

Description of the PX-HC algorithm

Description of the PX-HC algorithm A Description of the PX-HC algorithm Let N = C c= N c and write C Nc K c= i= k= as, the Gibbs sampling algorithm at iteration m for continuous outcomes: Step A: For =,, J, draw θ m in the following steps:

Διαβάστε περισσότερα

( y) Partial Differential Equations

( y) Partial Differential Equations Partial Dierential Equations Linear P.D.Es. contains no owers roducts o the deendent variables / an o its derivatives can occasionall be solved. Consider eamle ( ) a (sometimes written as a ) we can integrate

Διαβάστε περισσότερα

Financial Risk Management

Financial Risk Management Pricing of American options University of Oulu - Department of Finance Spring 2018 Volatility-based binomial price process uuuus 0 = 26.51 uuus 0 = 24.71 uus 0 = us 0 = S 0 = ds 0 = dds 0 = ddds 0 = 16.19

Διαβάστε περισσότερα

Elements of Information Theory

Elements of Information Theory Elements of Information Theory Model of Digital Communications System A Logarithmic Measure for Information Mutual Information Units of Information Self-Information News... Example Information Measure

Διαβάστε περισσότερα

Risk! " #$%&'() *!'+,'''## -. / # $

Risk!  #$%&'() *!'+,'''## -. / # $ Risk! " #$%&'(!'+,'''## -. / 0! " # $ +/ #%&''&(+(( &'',$ #-&''&$ #(./0&'',$( ( (! #( &''/$ #$ 3 #4&'',$ #- &'',$ #5&''6(&''&7&'',$ / ( /8 9 :&' " 4; < # $ 3 " ( #$ = = #$ #$ ( 3 - > # $ 3 = = " 3 3, 6?3

Διαβάστε περισσότερα

Bessel functions. ν + 1 ; 1 = 0 for k = 0, 1, 2,..., n 1. Γ( n + k + 1) = ( 1) n J n (z). Γ(n + k + 1) k!

Bessel functions. ν + 1 ; 1 = 0 for k = 0, 1, 2,..., n 1. Γ( n + k + 1) = ( 1) n J n (z). Γ(n + k + 1) k! Bessel functions The Bessel function J ν (z of the first kind of order ν is defined by J ν (z ( (z/ν ν Γ(ν + F ν + ; z 4 ( k k ( Γ(ν + k + k! For ν this is a solution of the Bessel differential equation

Διαβάστε περισσότερα

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

Review Test 3. MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Review Test MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Find the exact value of the expression. 1) sin - 11π 1 1) + - + - - ) sin 11π 1 ) ( -

Διαβάστε περισσότερα

Numerical Analysis FMN011

Numerical Analysis FMN011 Numerical Analysis FMN011 Carmen Arévalo Lund University carmen@maths.lth.se Lecture 12 Periodic data A function g has period P if g(x + P ) = g(x) Model: Trigonometric polynomial of order M T M (x) =

Διαβάστε περισσότερα

Discretization of Generalized Convection-Diffusion

Discretization of Generalized Convection-Diffusion Discretization of Generalized Convection-Diffusion H. Heumann R. Hiptmair Seminar für Angewandte Mathematik ETH Zürich Colloque Numérique Suisse / Schweizer Numerik Kolloquium 8 Generalized Convection-Diffusion

Διαβάστε περισσότερα

(, ) (SEM) [4] ,,,, , Legendre. [6] Gauss-Lobatto-Legendre (GLL) Legendre. Dubiner ,,,, (TSEM) Vol. 34 No. 4 Dec. 2017

(, ) (SEM) [4] ,,,, , Legendre. [6] Gauss-Lobatto-Legendre (GLL) Legendre. Dubiner ,,,, (TSEM) Vol. 34 No. 4 Dec. 2017 34 4 17 1 JOURNAL OF SHANGHAI POLYTECHNIC UNIVERSITY Vol. 34 No. 4 Dec. 17 : 11-4543(174-83-8 DOI: 1.1957/j.cnki.jsspu.17.4.6 (, 19 :,,,,,, : ; ; ; ; ; : O 41.8 : A, [1],,,,, Jung [] Legendre, [3] Chebyshev

Διαβάστε περισσότερα

Συστήματα Διαχείρισης Βάσεων Δεδομένων

Συστήματα Διαχείρισης Βάσεων Δεδομένων ΕΛΛΗΝΙΚΗ ΔΗΜΟΚΡΑΤΙΑ ΠΑΝΕΠΙΣΤΗΜΙΟ ΚΡΗΤΗΣ Συστήματα Διαχείρισης Βάσεων Δεδομένων Φροντιστήριο 5: Tutorial on External Sorting Δημήτρης Πλεξουσάκης Τμήμα Επιστήμης Υπολογιστών TUTORIAL ON EXTERNAL SORTING

Διαβάστε περισσότερα

ΠΟΛΥΤΕΧΝΕΙΟ ΚΡΗΤΗΣ ΣΧΟΛΗ ΜΗΧΑΝΙΚΩΝ ΠΕΡΙΒΑΛΛΟΝΤΟΣ

ΠΟΛΥΤΕΧΝΕΙΟ ΚΡΗΤΗΣ ΣΧΟΛΗ ΜΗΧΑΝΙΚΩΝ ΠΕΡΙΒΑΛΛΟΝΤΟΣ ΠΟΛΥΤΕΧΝΕΙΟ ΚΡΗΤΗΣ ΣΧΟΛΗ ΜΗΧΑΝΙΚΩΝ ΠΕΡΙΒΑΛΛΟΝΤΟΣ Τομέας Περιβαλλοντικής Υδραυλικής και Γεωπεριβαλλοντικής Μηχανικής (III) Εργαστήριο Γεωπεριβαλλοντικής Μηχανικής TECHNICAL UNIVERSITY OF CRETE SCHOOL of

Διαβάστε περισσότερα

VBA Microsoft Excel. J. Comput. Chem. Jpn., Vol. 5, No. 1, pp (2006)

VBA Microsoft Excel. J. Comput. Chem. Jpn., Vol. 5, No. 1, pp (2006) J. Comput. Chem. Jpn., Vol. 5, No. 1, pp. 29 38 (2006) Microsoft Excel, 184-8588 2-24-16 e-mail: yosimura@cc.tuat.ac.jp (Received: July 28, 2005; Accepted for publication: October 24, 2005; Published on

Διαβάστε περισσότερα

Εισαγωγή στη Fortran. Μάθημα 3 ο. Ελευθερία Λιούκα

Εισαγωγή στη Fortran. Μάθημα 3 ο. Ελευθερία Λιούκα Εισαγωγή στη Fortran Μάθημα 3 ο Ελευθερία Λιούκα liouka.eleftheria@gmail.com Περιεχόμενα Loops External Functions Subroutines Arrays Common mistakes Loops Ανάγκη να εκτελέσουμε τις ίδιες εντολές πολλές

Διαβάστε περισσότερα

5269: Υπολογιστικές Μέθοδοι για Μηχανικούς Επανάληψη

5269: Υπολογιστικές Μέθοδοι για Μηχανικούς Επανάληψη 569: Υπολογιστικές Μέθοδοι για Μηχανικούς Επανάληψη ttp://ecourses.cemeng.ntua.gr/courses/computational_metods_or_engineers/ Σφάλμα αριθμητικών μεθόδων Αναπαράσταση αριθμών σε υπολογιστή αναπαράσταση κινητής

Διαβάστε περισσότερα

5269: Υπολογιστικές Μέθοδοι για Μηχανικούς. Συνήθεις Διαφορικές Εξισώσεις Πρόβλημα Αρχικών τιμών (B)

5269: Υπολογιστικές Μέθοδοι για Μηχανικούς. Συνήθεις Διαφορικές Εξισώσεις Πρόβλημα Αρχικών τιμών (B) 569: Υπολογιστικές Μέθοδοι για Μηχανικούς Συνήθεις Διαφορικές Εξισώσεις Πρόβλημα Αρχικών τιμών B ttp://ecoursescemengntuagr/courses/computational_metods_or_engineers/ Επίλυση διαφορικών εξισώσεων Α Επίλυση

Διαβάστε περισσότερα

DiracDelta. Notations. Primary definition. Specific values. General characteristics. Traditional name. Traditional notation

DiracDelta. Notations. Primary definition. Specific values. General characteristics. Traditional name. Traditional notation DiracDelta Notations Traditional name Dirac delta function Traditional notation x Mathematica StandardForm notation DiracDeltax Primary definition 4.03.02.000.0 x Π lim ε ; x ε0 x 2 2 ε Specific values

Διαβάστε περισσότερα

Stabilization of stock price prediction by cross entropy optimization

Stabilization of stock price prediction by cross entropy optimization ,,,,,,,, Stabilization of stock prediction by cross entropy optimization Kazuki Miura, Hideitsu Hino and Noboru Murata Prediction of series data is a long standing important problem Especially, prediction

Διαβάστε περισσότερα

Keyframing can be tedious - especially to get realism Using physics to define the animation, Subset of procedural animation Provide the physical

Keyframing can be tedious - especially to get realism Using physics to define the animation, Subset of procedural animation Provide the physical Dynamics-Physics based animation Keyframing can be tedious - especially to get realism Using physics to define the animation, Subset of procedural animation Provide the physical rules-laws that govern

Διαβάστε περισσότερα

C F E E E F FF E F B F F A EA C AEC

C F E E E F FF E F B F F A EA C AEC Proceedings of the International Multiconference on Computer Science and Information Technology pp. 767 774 ISBN 978-83-60810-27-9 ISSN 1896-7094 CFEEEFFFEFBFFAEAC AEC EEEDB DACDB DEEE EDBCD BACE FE DD

Διαβάστε περισσότερα

Exercises to Statistics of Material Fatigue No. 5

Exercises to Statistics of Material Fatigue No. 5 Prof. Dr. Christine Müller Dipl.-Math. Christoph Kustosz Eercises to Statistics of Material Fatigue No. 5 E. 9 (5 a Show, that a Fisher information matri for a two dimensional parameter θ (θ,θ 2 R 2, can

Διαβάστε περισσότερα

An Automatic Modulation Classifier using a Frequency Discriminator for Intelligent Software Defined Radio

An Automatic Modulation Classifier using a Frequency Discriminator for Intelligent Software Defined Radio C IEEJ Transactions on Electronics, Information and Systems Vol.133 No.5 pp.910 915 DOI: 10.1541/ieejeiss.133.910 a) An Automatic Modulation Classifier using a Frequency Discriminator for Intelligent Software

Διαβάστε περισσότερα

t ts P ALEPlot t t P rt P ts r P ts t r P ts

t ts P ALEPlot t t P rt P ts r P ts t r P ts t ts P ALEPlot 2 2 2 t t P rt P ts r P ts t r P ts t t r 1 t2 1 s r s r s r 1 1 tr s r t r s s rt t r s 2 s t t r r r t s s r t r t 2 t t r r t t2 t s s t t t s t t st 2 t t r t r t r s s t t r t s r t

Διαβάστε περισσότερα

3.4 SUM AND DIFFERENCE FORMULAS. NOTE: cos(α+β) cos α + cos β cos(α-β) cos α -cos β

3.4 SUM AND DIFFERENCE FORMULAS. NOTE: cos(α+β) cos α + cos β cos(α-β) cos α -cos β 3.4 SUM AND DIFFERENCE FORMULAS Page Theorem cos(αβ cos α cos β -sin α cos(α-β cos α cos β sin α NOTE: cos(αβ cos α cos β cos(α-β cos α -cos β Proof of cos(α-β cos α cos β sin α Let s use a unit circle

Διαβάστε περισσότερα

ECE Spring Prof. David R. Jackson ECE Dept. Notes 2

ECE Spring Prof. David R. Jackson ECE Dept. Notes 2 ECE 634 Spring 6 Prof. David R. Jackson ECE Dept. Notes Fields in a Source-Free Region Example: Radiation from an aperture y PEC E t x Aperture Assume the following choice of vector potentials: A F = =

Διαβάστε περισσότερα

Ηλεκτρονικοί Υπολογιστές IV

Ηλεκτρονικοί Υπολογιστές IV ΠΑΝΕΠΙΣΤΗΜΙΟ ΙΩΑΝΝΙΝΩΝ ΑΝΟΙΚΤΑ ΑΚΑΔΗΜΑΪΚΑ ΜΑΘΗΜΑΤΑ Ηλεκτρονικοί Υπολογιστές IV Μοντέλα χρονολογικών σειρών Διδάσκων: Επίκουρος Καθηγητής Αθανάσιος Σταυρακούδης Άδειες Χρήσης Το παρόν εκπαιδευτικό υλικό

Διαβάστε περισσότερα

Chapter 6 BLM Answers

Chapter 6 BLM Answers Chapter 6 BLM Answers BLM 6 Chapter 6 Prerequisite Skills. a) i) II ii) IV iii) III i) 5 ii) 7 iii) 7. a) 0, c) 88.,.6, 59.6 d). a) 5 + 60 n; 7 + n, c). rad + n rad; 7 9,. a) 5 6 c) 69. d) 0.88 5. a) negative

Διαβάστε περισσότερα

Queensland University of Technology Transport Data Analysis and Modeling Methodologies

Queensland University of Technology Transport Data Analysis and Modeling Methodologies Queensland University of Technology Transport Data Analysis and Modeling Methodologies Lab Session #7 Example 5.2 (with 3SLS Extensions) Seemingly Unrelated Regression Estimation and 3SLS A survey of 206

Διαβάστε περισσότερα

Teor imov r. ta matem. statist. Vip. 94, 2016, stor

Teor imov r. ta matem. statist. Vip. 94, 2016, stor eor imov r. ta matem. statist. Vip. 94, 6, stor. 93 5 Abstract. e article is devoted to models of financial markets wit stocastic volatility, wic is defined by a functional of Ornstein-Ulenbeck process

Διαβάστε περισσότερα

Lecture 34 Bootstrap confidence intervals

Lecture 34 Bootstrap confidence intervals Lecture 34 Bootstrap confidence intervals Confidence Intervals θ: an unknown parameter of interest We want to find limits θ and θ such that Gt = P nˆθ θ t If G 1 1 α is known, then P θ θ = P θ θ = 1 α

Διαβάστε περισσότερα

CORDIC Background (4A)

CORDIC Background (4A) CORDIC Background (4A Copyright (c 20-202 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version.2 or any later

Διαβάστε περισσότερα

Notations. Primary definition. Specific values. General characteristics. Traditional name. Traditional notation. Mathematica StandardForm notation

Notations. Primary definition. Specific values. General characteristics. Traditional name. Traditional notation. Mathematica StandardForm notation KelvinKei Notations Traditional name Kelvin function of the second kind Traditional notation kei Mathematica StandardForm notation KelvinKei Primary definition 03.5.0.000.0 kei kei 0 Specific values Values

Διαβάστε περισσότερα

CHINESE JOURNAL OF COMPUTATIONAL PHYSICS ] A. T e ) = ei ( T i - T e ) + er ( T r - T e ), T i ) = ei ( T e - T i ), T r ) = er ( T e - T r ),

CHINESE JOURNAL OF COMPUTATIONAL PHYSICS ] A. T e ) = ei ( T i - T e ) + er ( T r - T e ), T i ) = ei ( T e - T i ), T r ) = er ( T e - T r ), 24 1 2007 1 CHINESE JOURNAL OF COMPUTATIONAL PHYSICS Vol 24,No 1 Jan, 2007 [ ] 10012246X(2007) 0120019210,,, (, 411105) [ ], Hessian,,, [ ] ; ; ; Hessian [ ] O357153 ; O24211 [ ] A 0 (inertial confinement

Διαβάστε περισσότερα

(6,5 μονάδες) Θέμα 1 ο. Τμήμα Πολιτικών Μηχανικών Σχολή Τεχνολογικών Εφαρμογών Διεθνές Πανεπιστήμιο Ελλάδος ΟΝΟΜΑΤΕΠΩΝΥΜΟ

(6,5 μονάδες) Θέμα 1 ο. Τμήμα Πολιτικών Μηχανικών Σχολή Τεχνολογικών Εφαρμογών Διεθνές Πανεπιστήμιο Ελλάδος ΟΝΟΜΑΤΕΠΩΝΥΜΟ Τμήμα Πολιτικών Μηχανικών Σχολή Τεχνολογικών Εφαρμογών Διεθνές Πανεπιστήμιο Ελλάδος ΤΕΛΙΚΗ ΕΞΕΤΑΣΗ ΕΡΓΑΣΤΗΡΙΟΥ ΑΡΙΘΜΗΤΙΚΗΣ ΑΝΑΛΥΣΗΣ ΕΑΡΙΝΟ ΕΞΑΜΗΝΟ ΑΚΑΔ. ΕΤΟΣ 8-9 ΔΙΔΑΣΚΩΝ : Χ. Βοζίκης ΟΝΟΜΑΤΕΠΩΝΥΜΟ Αριθμός

Διαβάστε περισσότερα

5269: Υπολογιστικές Μέθοδοι για Μηχανικούς Επανάληψη

5269: Υπολογιστικές Μέθοδοι για Μηχανικούς Επανάληψη 569: Υπολογιστικές Μέθοδοι για Μηχανικούς Επανάληψη ttp://ecourses.cemeng.ntua.gr/courses/computational_metods_or_engineers/ Σφάλμα αριθμητικών μεθόδων Αναπαράσταση αριθμών σε υπολογιστή αναπαράσταση κινητής

Διαβάστε περισσότερα

Συστήματα Διαχείρισης Βάσεων Δεδομένων

Συστήματα Διαχείρισης Βάσεων Δεδομένων ΕΛΛΗΝΙΚΗ ΔΗΜΟΚΡΑΤΙΑ ΠΑΝΕΠΙΣΤΗΜΙΟ ΚΡΗΤΗΣ Συστήματα Διαχείρισης Βάσεων Δεδομένων Φροντιστήριο 9: Transactions - part 1 Δημήτρης Πλεξουσάκης Τμήμα Επιστήμης Υπολογιστών Tutorial on Undo, Redo and Undo/Redo

Διαβάστε περισσότερα

5.4 The Poisson Distribution.

5.4 The Poisson Distribution. The worst thing you can do about a situation is nothing. Sr. O Shea Jackson 5.4 The Poisson Distribution. Description of the Poisson Distribution Discrete probability distribution. The random variable

Διαβάστε περισσότερα

MSWD = 1.06, probability = 0.39

MSWD = 1.06, probability = 0.39 MSWD Institute of Geophysics and Planetary Physics Incremental Heating 36Ar(a) 37Ar(ca) 38Ar(cl) 39Ar(k) 40Ar(r) Age (Ma) 40Ar(r) (%) 1B15835D 670 C 4 0.000001 0.078288 0.000010 0.001470 0.010633 9.19

Διαβάστε περισσότερα

Παράδειγµα #11 ΠΡΟΒΛΗΜΑΤΑ ΑΡΧΙΚΩΝ ΤΙΜΩΝ Σ Ε ΕΠΙΜΕΛΕΙΑ: Ν. Βασιλειάδης

Παράδειγµα #11 ΠΡΟΒΛΗΜΑΤΑ ΑΡΧΙΚΩΝ ΤΙΜΩΝ Σ Ε ΕΠΙΜΕΛΕΙΑ: Ν. Βασιλειάδης Παράδειγµα # ΠΡΟΒΛΗΜΑΤΑ ΑΡΧΙΚΩΝ ΤΙΜΩΝ Σ Ε ΕΠΙΜΕΛΕΙΑ: Ν. Βασιλειάδης Άσκηση ίδεται η διαφορική εξίσωση: dy dx y 0 = 0 x = y + e, Να επιλυθεί το πρόβληµα αρχικών τιµών µε τις µεθόδους Euler και Runge-Kutta

Διαβάστε περισσότερα

Supplementary Materials for Evolutionary Multiobjective Optimization Based Multimodal Optimization: Fitness Landscape Approximation and Peak Detection

Supplementary Materials for Evolutionary Multiobjective Optimization Based Multimodal Optimization: Fitness Landscape Approximation and Peak Detection IEEE TRANSACTIONS ON EVOLUTIONARY COMPUTATION, VOL. XX, NO. X, XXXX XXXX Supplementary Materials for Evolutionary Multiobjective Optimization Based Multimodal Optimization: Fitness Landscape Approximation

Διαβάστε περισσότερα

*H31123A0228* 1. (a) Find the value of at the point where x = 2 on the curve with equation. y = x 2 (5x 1). (6)

*H31123A0228* 1. (a) Find the value of at the point where x = 2 on the curve with equation. y = x 2 (5x 1). (6) C3 past papers 009 to 01 physicsandmathstutor.comthis paper: January 009 If you don't find enough space in this booklet for your working for a question, then pleasecuse some loose-leaf paper and glue it

Διαβάστε περισσότερα

Consolidated Drained

Consolidated Drained Consolidated Drained q, 8 6 Max. Shear c' =.185 φ' =.8 tan φ' =.69 Deviator, 8 6 6 8 1 1 p', 5 1 15 5 Axial, Symbol Sample ID Depth Test Number Height, in Diameter, in Moisture Content (from Cuttings),

Διαβάστε περισσότερα

Probabilistic Approach to Robust Optimization

Probabilistic Approach to Robust Optimization Probabilistic Approach to Robust Optimization Akiko Takeda Department of Mathematical & Computing Sciences Graduate School of Information Science and Engineering Tokyo Institute of Technology Tokyo 52-8552,

Διαβάστε περισσότερα

4.1 Αριθμητική Ολοκλήρωση Εξισώσεων Νεύτωνα

4.1 Αριθμητική Ολοκλήρωση Εξισώσεων Νεύτωνα ΚΕΦΑΛΑΙΟ 4 Κίνηση Σωματιδίου Στο κεφάλαιο αυτό μελετάται αριθμητικά η επίλυση των κλασικών εξισώσεων κίνησης μονοδιάστατων μηχανικών συστημάτων, όπως λ.χ. αυτή του σημειακού σωματιδίου σε μια ευθεία, του

Διαβάστε περισσότερα

, Evaluation of a library against injection attacks

, Evaluation of a library against injection attacks THE INSTITUTE OF ELECTRONICS, INFMATION AND COMMUNICATION ENGINEERS TECHNICAL REPT OF IEICE., () 211 8588 4 1 1 221 0835 2 14 1 E-mail: okubo@jp.fujitsu.com, tanaka@iisec.ac.jp Web,,,, Evaluation of a

Διαβάστε περισσότερα

Inverse trigonometric functions & General Solution of Trigonometric Equations. ------------------ ----------------------------- -----------------

Inverse trigonometric functions & General Solution of Trigonometric Equations. ------------------ ----------------------------- ----------------- Inverse trigonometric functions & General Solution of Trigonometric Equations. 1. Sin ( ) = a) b) c) d) Ans b. Solution : Method 1. Ans a: 17 > 1 a) is rejected. w.k.t Sin ( sin ) = d is rejected. If sin

Διαβάστε περισσότερα

DESIGN OF MACHINERY SOLUTION MANUAL h in h 4 0.

DESIGN OF MACHINERY SOLUTION MANUAL h in h 4 0. DESIGN OF MACHINERY SOLUTION MANUAL -7-1! PROBLEM -7 Statement: Design a double-dwell cam to move a follower from to 25 6, dwell for 12, fall 25 and dwell for the remader The total cycle must take 4 sec

Διαβάστε περισσότερα

CORDIC Background (2A)

CORDIC Background (2A) CORDIC Background 2A Copyright c 20-202 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version.2 or any later

Διαβάστε περισσότερα

Αριθμητική Επίλυση Συνήθων Διαφορίκών Εξισώσεων 3ο Εργαστήριο 27/03/2015 1

Αριθμητική Επίλυση Συνήθων Διαφορίκών Εξισώσεων 3ο Εργαστήριο 27/03/2015 1 Αριθμητική Επίλυση Συνήθων Διαφορίκών Εξισώσεων 3ο Εργαστήριο 7/3/5 Σκοπός αυτού του εργαστηρίου είναι να δούμε πως μπορούμε να επιλύσουμε συστήματα διαφορικών εξισώσεων, με την χρήση του Matlab. Συστήματα

Διαβάστε περισσότερα

Example Sheet 3 Solutions

Example Sheet 3 Solutions Example Sheet 3 Solutions. i Regular Sturm-Liouville. ii Singular Sturm-Liouville mixed boundary conditions. iii Not Sturm-Liouville ODE is not in Sturm-Liouville form. iv Regular Sturm-Liouville note

Διαβάστε περισσότερα

NMBTC.COM /

NMBTC.COM / Common Common Vibration Test:... Conforms to JIS C 60068-2-6, Amplitude: 1.5mm, Frequency 10 to 55 Hz, 1 hour in each of the X, Y and Z directions. Shock Test:...Conforms to JIS C 60068-2-27, Acceleration

Διαβάστε περισσότερα

Finite difference method for 2-D heat equation

Finite difference method for 2-D heat equation Finite difference method for 2-D heat equation Praveen. C praveen@math.tifrbng.res.in Tata Institute of Fundamental Research Center for Applicable Mathematics Bangalore 560065 http://math.tifrbng.res.in/~praveen

Διαβάστε περισσότερα

Κεφάλαιο 3: Κίνηση Σωματιδίου. Υπολογιστική Φυσική Ι. Αναγνωστόπουλος Κωνσταντίνος

Κεφάλαιο 3: Κίνηση Σωματιδίου. Υπολογιστική Φυσική Ι. Αναγνωστόπουλος Κωνσταντίνος Σχολή Εφαρμοσμένων Μαθηματικών και Φυσικών Επιστημών Εθνικό Μετσόβιο Πολυτεχνείο Υπολογιστική Φυσική Ι Κεφάλαιο 3: Κίνηση Σωματιδίου Αναγνωστόπουλος Κωνσταντίνος Άδεια Χρήσης Το παρόν εκπαιδευτικό υλικό

Διαβάστε περισσότερα

PARTIAL NOTES for 6.1 Trigonometric Identities

PARTIAL NOTES for 6.1 Trigonometric Identities PARTIAL NOTES for 6.1 Trigonometric Identities tanθ = sinθ cosθ cotθ = cosθ sinθ BASIC IDENTITIES cscθ = 1 sinθ secθ = 1 cosθ cotθ = 1 tanθ PYTHAGOREAN IDENTITIES sin θ + cos θ =1 tan θ +1= sec θ 1 + cot

Διαβάστε περισσότερα

BiCG CGS BiCGStab BiCG CGS 5),6) BiCGStab M Minimum esidual part CGS BiCGStab BiCGStab 2 PBiCG PCGS α β 3 BiCGStab PBiCGStab PBiCG 4 PBiCGStab 5 2. Bi

BiCG CGS BiCGStab BiCG CGS 5),6) BiCGStab M Minimum esidual part CGS BiCGStab BiCGStab 2 PBiCG PCGS α β 3 BiCGStab PBiCGStab PBiCG 4 PBiCGStab 5 2. Bi BiCGStab 1 1 2 3 1 4 2 BiCGStab PBiCGStab BiCG CGS CGS PBiCGStab BiCGStab M PBiCGStab An improvement in preconditioned algorithm of BiCGStab method Shoji Itoh, 1 aahiro Katagiri, 1 aao Saurai, 2 Mitsuyoshi

Διαβάστε περισσότερα

Introduction to the ML Estimation of ARMA processes

Introduction to the ML Estimation of ARMA processes Introduction to the ML Estimation of ARMA processes Eduardo Rossi University of Pavia October 2013 Rossi ARMA Estimation Financial Econometrics - 2013 1 / 1 We consider the AR(p) model: Y t = c + φ 1 Y

Διαβάστε περισσότερα

Phys460.nb Solution for the t-dependent Schrodinger s equation How did we find the solution? (not required)

Phys460.nb Solution for the t-dependent Schrodinger s equation How did we find the solution? (not required) Phys460.nb 81 ψ n (t) is still the (same) eigenstate of H But for tdependent H. The answer is NO. 5.5.5. Solution for the tdependent Schrodinger s equation If we assume that at time t 0, the electron starts

Διαβάστε περισσότερα

ΑΛΛΗΛΕΠΙ ΡΑΣΗ ΜΟΡΦΩΝ ΛΥΓΙΣΜΟΥ ΣΤΙΣ ΜΕΤΑΛΛΙΚΕΣ ΚΑΤΑΣΚΕΥΕΣ

ΑΛΛΗΛΕΠΙ ΡΑΣΗ ΜΟΡΦΩΝ ΛΥΓΙΣΜΟΥ ΣΤΙΣ ΜΕΤΑΛΛΙΚΕΣ ΚΑΤΑΣΚΕΥΕΣ ΕΘΝΙΚΟ ΜΕΤΣΟΒΙΟ ΠΟΛΥΤΕΧΝΕΙΟ ΤΜΗΜΑ ΠΟΛΙΤΙΚΩΝ ΜΗΧΑΝΙΚΩΝ Τοµέας οµοστατικής Εργαστήριο Μεταλλικών Κατασκευών ΑΛΛΗΛΕΠΙ ΡΑΣΗ ΜΟΡΦΩΝ ΛΥΓΙΣΜΟΥ ΣΤΙΣ ΜΕΤΑΛΛΙΚΕΣ ΚΑΤΑΣΚΕΥΕΣ ιπλωµατική Εργασία Ιωάννη Σ. Προµπονά

Διαβάστε περισσότερα

ΓΡΑΜΜΙΚΟΣ & ΔΙΚΤΥΑΚΟΣ ΠΡΟΓΡΑΜΜΑΤΙΣΜΟΣ

ΓΡΑΜΜΙΚΟΣ & ΔΙΚΤΥΑΚΟΣ ΠΡΟΓΡΑΜΜΑΤΙΣΜΟΣ ΓΡΑΜΜΙΚΟΣ & ΔΙΚΤΥΑΚΟΣ ΠΡΟΓΡΑΜΜΑΤΙΣΜΟΣ Ενότητα 12: Συνοπτική Παρουσίαση Ανάπτυξης Κώδικα με το Matlab Σαμαράς Νικόλαος Άδειες Χρήσης Το παρόν εκπαιδευτικό υλικό υπόκειται σε άδειες χρήσης Creative Commons.

Διαβάστε περισσότερα

The Negative Neumann Eigenvalues of Second Order Differential Equation with Two Turning Points

The Negative Neumann Eigenvalues of Second Order Differential Equation with Two Turning Points Applied Mathematical Sciences, Vol. 3, 009, no., 6-66 The Negative Neumann Eigenvalues of Second Order Differential Equation with Two Turning Points A. Neamaty and E. A. Sazgar Department of Mathematics,

Διαβάστε περισσότερα

BMI/CS 776 Lecture #14: Multiple Alignment - MUSCLE. Colin Dewey

BMI/CS 776 Lecture #14: Multiple Alignment - MUSCLE. Colin Dewey BMI/CS 776 Lecture #14: Multiple Alignment - MUSCLE Colin Dewey 2007.03.08 1 Importance of protein multiple alignment Phylogenetic tree estimation Prediction of protein secondary structure Critical residue

Διαβάστε περισσότερα

Solution to Review Problems for Midterm III

Solution to Review Problems for Midterm III Solution to Review Problems for Mierm III Mierm III: Friday, November 19 in class Topics:.8-.11, 4.1,4. 1. Find the derivative of the following functions and simplify your answers. (a) x(ln(4x)) +ln(5

Διαβάστε περισσότερα