MATHCAD'S PROGRAM FUNCTION and APPLICATION IN TEACHING OF MATH
|
|
|
- Joseph Powell
- 9 years ago
- Views:
Transcription
1 . About Matcad MATHCAD'S PROGRAM FUNCTION and APPLICATION IN TEACHING OF MATH DE TING WU Depart of Mat Moreouse College Atlanta, GA.33, USA Introducton Matcad s one of popular computer algebra system (mat software) n te world. Lke oter CAS's, t as te capabltes to perform algebrac operatons, calculus operatons and draw grap of or 3 dmensons. We can use t to get numercal, symbolc and grapc soluton of mat problem. Besdes above common capabltes, t as some feature: ts words processor functon s better tan oter CAS. Ts feature makes t look lke a scentfcal words processor and t easy to create a wokseet. Followng current trend to add program functon to mat software, t added program functon to tself, started n Matcad V7. Ts mprovement makes ts functon more complete and more powerful.. Role of program functon n teacng of Mat. Wtout doubt, mat softwares and tecnology are elpful ade n teacng of Mat. Tey are effectng te teacng of Mat profoundly and t can be expected te emergng newer tecnologes wll penetrate and reconfgure te teacng of Mat. Te program functon s a new functon of mat software. It s natural we want to know weter or not t s useful n teacng of Mat? I tnk: altoug for most problems we meet n teacng of Mat t s enoug to use computaton ablty, n certan cases te program functon becomes necessary and very elpful. For example, for Numercal Analyss te program functon s very useful but for Abstract Algebra t s less necessary. Anoter example s Dfferental Equatons, wen teacng approxmate metod for a soluton of a dfferental equaton te program functon s necassary and teacng exstence and unquess of te soluton of a dfferental equaton t s not necessary. Moreover, as te power of program functon s ncreasng te more applcatons wll be found..3 About ts presentaton Ts presentaton s to ntroduce te program functon of Matcad and llustrate some of applcaton n teacng of Mat wc s based on my teacng experence n past years.
2 . Program functon of Matcad In ts part te program operators of Matcad and te structure of Matcad program are ntroduced.. Program operators of Matcad Matcad program s created by usng ts program operators. Matcad as operators wc are accassable from Program toolbar. Now, let's take a look of tese operators.."add lne": operator to ntate a program or add a lne to a program. Wen clck t on te programmng toolbar a vertcal bar and placeolds wll be produced.. " ": local assgn operator wc defne left older by rgt older of arrow. 3. " f ": condtonal operator wc can be used wenever you want a program statement to be executed only upon te occurrence of some condton.." oterwse": condtonal operator wc can be used togeter wt "f" operator wen you want a program to execute a statement wen te condton of "f" operator s false. 5." for " : loopng operator wc can be used wen you know ow many tmes you want a program statement to be executed repeatedly.." wle ": loopng operator wc can be used wen you want to stop executon of a statement upon te occurrence of a condton but don't know exactly wen te condton wll occur. 7." break ": Control operator wc can be used wen you want to break out of a loop. upon te occurrence of some condton and wc moves executon to next starement outsde te loop. 8. " contnue ": Control operator wc can be used wen you want to alt current teraton of a loop upon te occurrence of a condton and force program to contnue next teraon of a loop. 9." return ": Control operator wc can be used anywere n a program wen you want to nterrupt a program and to return a value dfferent from te value of last expresson of a program.." on error ": Operator for error control wc can be used to return an alternatve value wen an error appened n an expresson.
3 . Structure of Matcad program A program s a precse sequence of nstructons desgned to accompls a specfc task. Matcad program s a sequence of statements created by usng program operators, too. But, t as specal form and structure. Now, we use an example to llustrate. Example of Matcad program f( x, y) := u x + y v sn( u) + e u w + u v w Left s a Matcad program wc defnes a functon n varable. Ts program conssts of parts. Left part s name or varable name wc represent te output of last statement n te program; Rgt part s ncluded n a vertcal bar wc s te body of te program comprsed of program operators. Bot parts are connected by te defnton sgn " := ". Ts means Left part s defned by rgt part or te program assgns te result to te name on te left. In fact, te program just s a compound expresson wc s represented by name on te left. Te form and structure of Matcad program make t easy to recognze and separate from oter part of workseet. Te program operators are smple so tat wrtng a program s smple. Ts s very sutable for teacng purpose. Ts form and structure s good for revsng of program too. Also, ts form and structure make t convenent to nteract wt oter parts of a workseet. Altoug Matcad program s comprsed of ts program operators, a lot of ts bult-n functons can be used n te program too. For example, augment, sgn, random varable and so on. Ts makes ts program more concse and powerful. Te output of Matcad program maybe s a number, a vector, a matrx and a functon, ts makes ts applcaton wde and flexble. However, te program functon of Matcad s as lmted as oter tecnologes. For example, Not all ts bult-n functons can be used n Matcad program and some of tem can not be used completely and symbolc operatons don't work wtn a program. Anyway, Program functon of Matcad s a useful tool n teacng of Mat.
4 3. Applcaton n teacng of Dfferental Equatons Matcad's program functon can be appled to te teacng of Dfferental Equatons. Altoug Matcad as several bult-n functons(or routnes) for solvng of dfferental equatons, suc as Odesolve, rkfxed, rkadapt, etc, tere're cases we need ts program functon. For example, wen teacng approxmate metods solvng dfferental equatons and tey are dfferent from tose wc are bass of above bult-n functons, Matcad program functon becomes necessary and elpful. Esspecally, n comparson of dfferent approxmate metods. In ts part we'll llustrate ts applcaton by exampltes. 3. Appcaton to one dfferental equaton In ts secton we 'll use Matcad's program functon to wrte programs to perform Euler metod and Improved Euler metod for a frst order dfferental equaton and compare ter results wt te exact soluton and te results of bult-n functon troug an example. Let's consder followng example. Gven: y'=+ y y + and y()=, x n [,]; Fnd: ts approxmate soluton over gven x x nterval by Euler metod and Improved Euler metod wt step sze =. and errors. To make programs of Euler and Improved Euler metod Program of Euler metod Program of Improved Euler Metod Eu( f, a, b, c, ) := x a y b c a n for.. n P P x x + + y y + f x, y + augment( x, y) IEu( f, a, b, c, ) := x a y b c a n for.. n P P x x + + y y + f x, y + y y + + f x, y augment( x, y) ( + f( x, y + + ) ) Note: n above programs Left sde s te output of te program wc s a matrx of x- value and approxmate soluton values. Rgt sde s te program wc uses te nput: 'f' functon of ODE, 'a' ntal x value; 'b' ntal y value; 'c' end pont of te nterval; '' step sze and perform approxmate metod to produce approxmate soluton. Now, let's us tese programs to get approxmate solutons of above example.
5 In above example, Let y y f( x, y) := + + a := b := c := :=. x x A := Eu( f, a, b, c, ) B := IEu( f, a, b, c, ) ten, Approxmate soluton produced by Euler matod: A T = Approxmate soluton produced by Improved Euler metod: B T = It's not ard to fnd ts exact soluton: g( x) := x tan( ln( x) ) :=.. x := +. Also, fnd ts soluton by bult-n functon Odesolve' Gven y' ( x) + y( x) x y( x) + y x y := Odesolve ( x, ) y( x ) = g x = Now, we grap tese solutons n a pcture.
6 ( A ) ( B ) g( x ) y( x ) x Next, let's analyze ter error. we defne error of Euler metod and Improved Euler Metod as ErEu and ErIEu. ( A ) ErEu := g x ErIEu := g x B ErEu T = ErIEu T = ErEu. ErIEu x
7 3. Applcaton to system of dfferental equatons In ts secton we'll wrte a program to mplement Improved Euler metod to fnd te approxmate solutons of a system of 3 dfferental equatons and analyze te error. Frst, wrte te program IEu( f, f, f3, a, b, c, d, l, ) := t a u b u c u3 d l a n for.. n P P P P t t + + (,, u, u3 ) (, ) u u + f t, u, u, u3 + u u + f t u + u3 u3 + f3 t, u, u u3 + ( + f( t, u, u, u ) ) u u + + f t, u u,, u3 ( + f( t, u, u, u ) ) u u + + f t, u u,, u3 ( + f3( t, u, u, u ) ) u3 u3 + + f3 t, u u,, u3 augment( t, u) augment( P, u) augment( P, u3) Now, we use ts program to fnd approxmate solutons of followng example. Gven: u'= u u()= u'= -u- e t + u()= t n [,] u3'=-u- e t + u3()= Fnd: ts approxmate solutons by Improved Euler metod wt step sze =. In ts example f( t, u, u, u3) := u f( t, u, u, u3) := u e t + f3( t, u, u, u3) := u a := b := c := d := l := :=. e t +
8 Let A := IEu( f, f, f3, a, b, c, d, l, ) 3 ten ts approxmate soluton s sown n te rgt matrx. Te st column s t-value ; Te nd column s u-value; Te 3rd column s u-value; Te t column s u3-value. A = Its exact solutons are : g( t) := cos( t) + sn( t) e t + g( t) := sn( t) + cos ( t) e t g3( t) := sn( t) + cos ( t) :=.. t :=. g( t ) = g t = g3 t = Next, we make grapes. Ist one s grap of 3 approxmate solutons; nd one s te grap of u and g; 3rd one s te grap of u and g; t s grap of u3 and g3.
9 A A A 3.5 ( A ) g( t ) ( A ) t.5 ( A ) g( t ) ( A 3 ) g3( t ) t t Now, let's analyze te error. We defne error n u, u, u3 as Eru, Eru, Eru3. g( t ) g( t ) Eru A := Eru A := Eru3 A 3 := g3( t ) Eru T = Eru T = Eru3 T =
10 Te grap of tese errors as follows:.8 Eru. Eru Eru t
11 . Applcaton n teacng of Numercal Analyss Numercal Analyss s anoter area n wc Matcad's program functon can dsplay ts full potental. Snce Numercal Analyss often needs massve, repeated and tedous computaton te program functon can best meet ts requrement. In ts part we just llustrate ts applcaton n fndng approxmate soluton of non-lnear equatons and Newton's nterpolaton polynomal.. Applcaton of fndng approxmate soluton of non-lnear equatons In ts secton we'll use program functon of Matcad to wrte a program to perform Secant metod to fnd approxmate soluton of non-lnear equatons. And, we'll compare te result wt bult-n functon's result. Program for Secant metod. ApS( f, a, b, r) := p a p b wle p p p p p p p p p f( p) r p f( p) f( p) f( p) Note: Input: f(x)=- gven equaton a,b-endponts of [a,b] tat bracket te soluton r-desred accuracy Output: Approxmate soluton satfyng accuracy Now, let's see an example: Fnd approxmate soluton of cos(x)-x= wt accuracy 5. f( x) := cos( x) x f = f = a := b := r := 5 Use grap to locate soluton n [,] Te desred approxmate soluton: x:= ApS( f, a, b, r) x = f( x) x Let's compare wtresult from bult-n functon. r := root( f( x), x,, ) r = Let's ceck te error er := x r er =
12 . Applcaton n fndng Newton nterpolaton polynomal In ts secton we'll use te program functon to make a program to produce te coeffents of Newton nterpolaton polynomal ten use symbolc operaton to form Newton nterpolaton polynomal. Also, te grap of Newton polynomal s provded. We llustrate by below example. Example.Gven: f()=.75977, f(.3)=.8, f(.)=.55, f(.9)=.888, f(.)=.33. Construct nterpolatng polynomal of degree by Newton's nterpolatory dvded dfference formula and use t to approxmate f(). Sol'n: Frst, enter te data: a := a :=.3 a :=. a :=.9 a :=. 3 b := b :=.8 b :=.55 b :=.888 b :=.33 3 Second, use followng program to fgure out dvded-dfferences. In followng program, use a for-loop to enter above set of data, and ten use double for-loop to fgure out te dvded-dfferences. Te output of te program s a matrx and te elments on te dagonal are te dvded-dfferences needed n Newton's formula. f := for for f.. x a for f b,.. j.. f f, j, j f, j x x j f = Ten, use Newton's nterpolatory dvded-dfference formula to construct polynomal. p( t) := f +, = f, ( t a k ) k = p( t) smplfy t.337t t t float,
13 Ten, fnd te approxmate value of f() s p = Fnally, Plot te data ponts and Newton's nterpolaton polynomal n a grap below: :=.. t :=,.... Grap of data ponts and Newton's poly. b p( t) a, t 5. Reference [] R.L.Burden & J.D.Fares:"Numercal Analyss" 7t edton, Brooks/Cole,. [] L.Fausett: "Numercal Metods Usng Matcad", Prentce Hall,. [3] R.K.Nagle, E.B.Staff & A.D.Snde: "Fundamentals of Dfferental Equatons" t edton, Addton Wesley, [} D.T.Wu: "Usng Matcad n Teacng Dfferental Equatons", Electronc Proceedngs of ICTMT, 999. Web ste: [5] D.T.Wu: "Teacng Numercal Analyss wt Matcad", "Internatonal Journal of Computer Algebra n Matematcs Educaton" Vol No., 3.
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
E-learning Vendor Management Checklist
E-learning Vendor Management Checklist June 2008 Permission is granted to print freely, unmodified, this document from www.doingelearning.com or to copy it in electronic form. If linked to from the net
+ + + - - 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
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
Section 5.4 Annuities, Present Value, and Amortization
Secton 5.4 Annutes, Present Value, and Amortzaton Present Value In Secton 5.2, we saw that the present value of A dollars at nterest rate per perod for n perods s the amount that must be deposted today
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
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
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.
A hybrid global optimization algorithm based on parallel chaos optimization and outlook algorithm
Avalable onlne www.ocpr.com Journal of Chemcal and Pharmaceutcal Research, 2014, 6(7):1884-1889 Research Artcle ISSN : 0975-7384 CODEN(USA) : JCPRC5 A hybrd global optmzaton algorthm based on parallel
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
An Alternative Way to Measure Private Equity Performance
An Alternatve Way to Measure Prvate Equty Performance Peter Todd Parlux Investment Technology LLC Summary Internal Rate of Return (IRR) s probably the most common way to measure the performance of prvate
The Cox-Ross-Rubinstein Option Pricing Model
Fnance 400 A. Penat - G. Pennacc Te Cox-Ross-Rubnsten Opton Prcng Model Te prevous notes sowed tat te absence o arbtrage restrcts te prce o an opton n terms o ts underlyng asset. However, te no-arbtrage
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.
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
Lecture 2: Single Layer Perceptrons Kevin Swingler
Lecture 2: Sngle Layer Perceptrons Kevn Sngler [email protected] 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
Support Vector Machines
Support Vector Machnes Max Wellng Department of Computer Scence Unversty of Toronto 10 Kng s College Road Toronto, M5S 3G5 Canada [email protected] Abstract Ths s a note to explan support vector machnes.
The OC Curve of Attribute Acceptance Plans
The OC Curve of Attrbute Acceptance Plans The Operatng Characterstc (OC) curve descrbes the probablty of acceptng a lot as a functon of the lot s qualty. Fgure 1 shows a typcal OC Curve. 10 8 6 4 1 3 4
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
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
Section 5.3 Annuities, Future Value, and Sinking Funds
Secton 5.3 Annutes, Future Value, and Snkng Funds Ordnary Annutes A sequence of equal payments made at equal perods of tme s called an annuty. The tme between payments s the payment perod, and the tme
Faraday's Law of Induction
Introducton Faraday's Law o Inducton In ths lab, you wll study Faraday's Law o nducton usng a wand wth col whch swngs through a magnetc eld. You wll also examne converson o mechanc energy nto electrc energy
Time Value of Money Module
Tme Value of Money Module O BJECTIVES After readng ths Module, you wll be able to: Understand smple nterest and compound nterest. 2 Compute and use the future value of a sngle sum. 3 Compute and use the
Instantaneous Rate of Change:
Instantaneous Rate of Cange: Last section we discovered tat te average rate of cange in F(x) can also be interpreted as te slope of a scant line. Te average rate of cange involves te cange in F(x) over
Frequency Selective IQ Phase and IQ Amplitude Imbalance Adjustments for OFDM Direct Conversion Transmitters
Frequency Selectve IQ Phase and IQ Ampltude Imbalance Adjustments for OFDM Drect Converson ransmtters Edmund Coersmeer, Ernst Zelnsk Noka, Meesmannstrasse 103, 44807 Bochum, Germany [email protected],
How Sets of Coherent Probabilities May Serve as Models for Degrees of Incoherence
1 st Internatonal Symposum on Imprecse Probabltes and Ther Applcatons, Ghent, Belgum, 29 June 2 July 1999 How Sets of Coherent Probabltes May Serve as Models for Degrees of Incoherence Mar J. Schervsh
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
DEFINING %COMPLETE IN MICROSOFT PROJECT
CelersSystems DEFINING %COMPLETE IN MICROSOFT PROJECT PREPARED BY James E Aksel, PMP, PMI-SP, MVP For Addtonal Informaton about Earned Value Management Systems and reportng, please contact: CelersSystems,
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
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
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, ()
The Full-Wave Rectifier
9/3/2005 The Full Wae ectfer.doc /0 The Full-Wae ectfer Consder the followng juncton dode crcut: s (t) Power Lne s (t) 2 Note that we are usng a transformer n ths crcut. The job of ths transformer s to
Implementation of Deutsch's Algorithm Using Mathcad
Implementaton of Deutsch's Algorthm Usng Mathcad Frank Roux The followng s a Mathcad mplementaton of Davd Deutsch's quantum computer prototype as presented on pages - n "Machnes, Logc and Quantum Physcs"
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
An Evaluation of the Extended Logistic, Simple Logistic, and Gompertz Models for Forecasting Short Lifecycle Products and Services
An Evaluaton of the Extended Logstc, Smple Logstc, and Gompertz Models for Forecastng Short Lfecycle Products and Servces Charles V. Trappey a,1, Hsn-yng Wu b a Professor (Management Scence), Natonal Chao
Forecasting the Direction and Strength of Stock Market Movement
Forecastng the Drecton and Strength of Stock Market Movement Jngwe Chen Mng Chen Nan Ye [email protected] [email protected] [email protected] Abstract - Stock market s one of the most complcated systems
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
"Research Note" APPLICATION OF CHARGE SIMULATION METHOD TO ELECTRIC FIELD CALCULATION IN THE POWER CABLES *
Iranan Journal of Scence & Technology, Transacton B, Engneerng, ol. 30, No. B6, 789-794 rnted n The Islamc Republc of Iran, 006 Shraz Unversty "Research Note" ALICATION OF CHARGE SIMULATION METHOD TO ELECTRIC
Using Series to Analyze Financial Situations: Present Value
2.8 Usng Seres to Analyze Fnancal Stuatons: Present Value In the prevous secton, you learned how to calculate the amount, or future value, of an ordnary smple annuty. The amount s the sum of the accumulated
Module 2 LOSSLESS IMAGE COMPRESSION SYSTEMS. Version 2 ECE IIT, Kharagpur
Module LOSSLESS IMAGE COMPRESSION SYSTEMS Lesson 3 Lossless Compresson: Huffman Codng Instructonal Objectves At the end of ths lesson, the students should be able to:. Defne and measure source entropy..
An MILP model for planning of batch plants operating in a campaign-mode
An MILP model for plannng of batch plants operatng n a campagn-mode Yanna Fumero Insttuto de Desarrollo y Dseño CONICET UTN [email protected] Gabrela Corsano Insttuto de Desarrollo y Dseño
J. Parallel Distrib. Comput.
J. Parallel Dstrb. Comput. 71 (2011) 62 76 Contents lsts avalable at ScenceDrect J. Parallel Dstrb. Comput. journal homepage: www.elsever.com/locate/jpdc Optmzng server placement n dstrbuted systems n
Forecasting the Demand of Emergency Supplies: Based on the CBR Theory and BP Neural Network
700 Proceedngs of the 8th Internatonal Conference on Innovaton & Management Forecastng the Demand of Emergency Supples: Based on the CBR Theory and BP Neural Network Fu Deqang, Lu Yun, L Changbng School
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
PSYCHOLOGICAL RESEARCH (PYC 304-C) Lecture 12
14 The Ch-squared dstrbuton PSYCHOLOGICAL RESEARCH (PYC 304-C) Lecture 1 If a normal varable X, havng mean µ and varance σ, s standardsed, the new varable Z has a mean 0 and varance 1. When ths standardsed
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
CHAPTER-II WATER-FLOODING. Calculating Oil Recovery Resulting from Displ. by an Immiscible Fluid:
CHAPTER-II WATER-FLOODING Interfacal Tenson: Energy requred ncreasng te area of te nterface by one unt. Te metods of measurng IFT s nclude a rng tensometer, pendant drop and spnnng drop tecnques. IFT s
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
NMT EE 589 & UNM ME 482/582 ROBOT ENGINEERING. Dr. Stephen Bruder NMT EE 589 & UNM ME 482/582
NMT EE 589 & UNM ME 482/582 ROBOT ENGINEERING Dr. Stephen Bruder NMT EE 589 & UNM ME 482/582 7. Root Dynamcs 7.2 Intro to Root Dynamcs We now look at the forces requred to cause moton of the root.e. dynamcs!!
Conferencing protocols and Petri net analysis
Conferencng protocols and Petr net analyss E. ANTONIDAKIS Department of Electroncs, Technologcal Educatonal Insttute of Crete, GREECE [email protected] Abstract: Durng a computer conference, users desre
A Performance Analysis of View Maintenance Techniques for Data Warehouses
A Performance Analyss of Vew Mantenance Technques for Data Warehouses Xng Wang Dell Computer Corporaton Round Roc, Texas Le Gruenwald The nversty of Olahoma School of Computer Scence orman, OK 739 Guangtao
1 Example 1: Axis-aligned rectangles
COS 511: Theoretcal Machne Learnng Lecturer: Rob Schapre Lecture # 6 Scrbe: Aaron Schld February 21, 2013 Last class, we dscussed an analogue for Occam s Razor for nfnte hypothess spaces that, n conjuncton
Simple Interest Loans (Section 5.1) :
Chapter 5 Fnance The frst part of ths revew wll explan the dfferent nterest and nvestment equatons you learned n secton 5.1 through 5.4 of your textbook and go through several examples. The second part
On the Optimal Control of a Cascade of Hydro-Electric Power Stations
On the Optmal Control of a Cascade of Hydro-Electrc Power Statons M.C.M. Guedes a, A.F. Rbero a, G.V. Smrnov b and S. Vlela c a Department of Mathematcs, School of Scences, Unversty of Porto, Portugal;
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 [email protected] 45 The con-tap test has the
The Development of Web Log Mining Based on Improve-K-Means Clustering Analysis
The Development of Web Log Mnng Based on Improve-K-Means Clusterng Analyss TngZhong Wang * College of Informaton Technology, Luoyang Normal Unversty, Luoyang, 471022, Chna [email protected] Abstract.
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
POLYSA: A Polynomial Algorithm for Non-binary Constraint Satisfaction Problems with and
POLYSA: A Polynomal Algorthm for Non-bnary Constrant Satsfacton Problems wth and Mguel A. Saldo, Federco Barber Dpto. Sstemas Informátcos y Computacón Unversdad Poltécnca de Valenca, Camno de Vera s/n
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
Lecture 10: What is a Function, definition, piecewise defined functions, difference quotient, domain of a function
Lecture 10: Wat is a Function, definition, piecewise defined functions, difference quotient, domain of a function A function arises wen one quantity depends on anoter. Many everyday relationsips between
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
An interactive system for structure-based ASCII art creation
An nteractve system for structure-based ASCII art creaton Katsunor Myake Henry Johan Tomoyuk Nshta The Unversty of Tokyo Nanyang Technologcal Unversty Abstract Non-Photorealstc Renderng (NPR), whose am
SAT Subject Math Level 1 Facts & Formulas
Numbers, Sequences, Factors Integers:..., -3, -2, -1, 0, 1, 2, 3,... Reals: integers plus fractions, decimals, and irrationals ( 2, 3, π, etc.) Order Of Operations: Aritmetic Sequences: PEMDAS (Parenteses
CHOLESTEROL REFERENCE METHOD LABORATORY NETWORK. Sample Stability Protocol
CHOLESTEROL REFERENCE METHOD LABORATORY NETWORK Sample Stablty Protocol Background The Cholesterol Reference Method Laboratory Network (CRMLN) developed certfcaton protocols for total cholesterol, HDL
Logical Development Of Vogel s Approximation Method (LD-VAM): An Approach To Find Basic Feasible Solution Of Transportation Problem
INTERNATIONAL JOURNAL OF SCIENTIFIC & TECHNOLOGY RESEARCH VOLUME, ISSUE, FEBRUARY ISSN 77-866 Logcal Development Of Vogel s Approxmaton Method (LD- An Approach To Fnd Basc Feasble Soluton Of Transportaton
Numerical Methods 數 值 方 法 概 說. Daniel Lee. Nov. 1, 2006
Numercal Methods 數 值 方 法 概 說 Danel Lee Nov. 1, 2006 Outlnes Lnear system : drect, teratve Nonlnear system : Newton-lke Interpolatons : polys, splnes, trg polys Approxmatons (I) : orthogonal polys Approxmatons
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
YIELD CURVE FITTING 2.0 Constructing Bond and Money Market Yield Curves using Cubic B-Spline and Natural Cubic Spline Methodology.
YIELD CURVE FITTING 2.0 Constructng Bond and Money Market Yeld Curves usng Cubc B-Splne and Natural Cubc Splne Methodology Users Manual YIELD CURVE FITTING 2.0 Users Manual Authors: Zhuosh Lu, Moorad Choudhry
MATHEMATICS FOR ENGINEERING DIFFERENTIATION TUTORIAL 1 - BASIC DIFFERENTIATION
MATHEMATICS FOR ENGINEERING DIFFERENTIATION TUTORIAL 1 - BASIC DIFFERENTIATION Tis tutorial is essential pre-requisite material for anyone stuing mecanical engineering. Tis tutorial uses te principle of
Bending Stresses for Simple Shapes
-6 Bendng Stesses fo Smple Sapes In bendng, te maxmum stess and amount of deflecton can be calculated n eac of te followng stuatons. Addtonal examples ae avalable n an engneeng andbook. Secton Modulus
Professor Iordanis Karagiannidis. 2010 Iordanis Karagiannidis
Fnancal Modelng Notes Basc Excel Fnancal Functons Professor Iordans Karagannds Excel Functons Excel Functons are preformatted formulas that allow you to perform arthmetc and other operatons very quckly
Texas Instruments 30X IIS Calculator
Texas Instruments 30X IIS Calculator Keystrokes for the TI-30X IIS are shown for a few topcs n whch keystrokes are unque. Start by readng the Quk Start secton. Then, before begnnng a specfc unt of the
The Greedy Method. Introduction. 0/1 Knapsack Problem
The Greedy Method Introducton We have completed data structures. We now are gong to look at algorthm desgn methods. Often we are lookng at optmzaton problems whose performance s exponental. For an optmzaton
A Programming Model for the Cloud Platform
Internatonal Journal of Advanced Scence and Technology A Programmng Model for the Cloud Platform Xaodong Lu School of Computer Engneerng and Scence Shangha Unversty, Shangha 200072, Chna [email protected]
FINANCIAL MATHEMATICS. A Practical Guide for Actuaries. and other Business Professionals
FINANCIAL MATHEMATICS A Practcal Gude for Actuares and other Busness Professonals Second Edton CHRIS RUCKMAN, FSA, MAAA JOE FRANCIS, FSA, MAAA, CFA Study Notes Prepared by Kevn Shand, FSA, FCIA Assstant
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: [email protected]
Joe Pimbley, unpublished, 2005. Yield Curve Calculations
Joe Pmbley, unpublshed, 005. Yeld Curve Calculatons Background: Everythng s dscount factors Yeld curve calculatons nclude valuaton of forward rate agreements (FRAs), swaps, nterest rate optons, and forward
Efficient Project Portfolio as a tool for Enterprise Risk Management
Effcent Proect Portfolo as a tool for Enterprse Rsk Management Valentn O. Nkonov Ural State Techncal Unversty Growth Traectory Consultng Company January 5, 27 Effcent Proect Portfolo as a tool for Enterprse
Solution: Let i = 10% and d = 5%. By definition, the respective forces of interest on funds A and B are. i 1 + it. S A (t) = d (1 dt) 2 1. = d 1 dt.
Chapter 9 Revew problems 9.1 Interest rate measurement Example 9.1. Fund A accumulates at a smple nterest rate of 10%. Fund B accumulates at a smple dscount rate of 5%. Fnd the pont n tme at whch the forces
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
SUPPLIER FINANCING AND STOCK MANAGEMENT. A JOINT VIEW.
SUPPLIER FINANCING AND STOCK MANAGEMENT. A JOINT VIEW. Lucía Isabel García Cebrán Departamento de Economía y Dreccón de Empresas Unversdad de Zaragoza Gran Vía, 2 50.005 Zaragoza (Span) Phone: 976-76-10-00
Parallel Numerical Simulation of Visual Neurons for Analysis of Optical Illusion
212 Thrd Internatonal Conference on Networkng and Computng Parallel Numercal Smulaton of Vsual Neurons for Analyss of Optcal Illuson Akra Egashra, Shunj Satoh, Hdetsugu Ire and Tsutomu Yoshnaga Graduate
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
Alternate Approximation of Concave Cost Functions for
Alternate Approxmaton of Concave Cost Functons for Process Desgn and Supply Chan Optmzaton Problems Dego C. Cafaro * and Ignaco E. Grossmann INTEC (UNL CONICET), Güemes 3450, 3000 Santa Fe, ARGENTINA Department
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,
IDENTIFICATION AND CORRECTION OF A COMMON ERROR IN GENERAL ANNUITY CALCULATIONS
IDENTIFICATION AND CORRECTION OF A COMMON ERROR IN GENERAL ANNUITY CALCULATIONS Chrs Deeley* Last revsed: September 22, 200 * Chrs Deeley s a Senor Lecturer n the School of Accountng, Charles Sturt Unversty,
A Dynamic Energy-Efficiency Mechanism for Data Center Networks
A Dynamc Energy-Effcency Mechansm for Data Center Networks Sun Lang, Zhang Jnfang, Huang Daochao, Yang Dong, Qn Yajuan A Dynamc Energy-Effcency Mechansm for Data Center Networks 1 Sun Lang, 1 Zhang Jnfang,
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
A Design Method of High-availability and Low-optical-loss Optical Aggregation Network Architecture
A Desgn Method of Hgh-avalablty and Low-optcal-loss Optcal Aggregaton Network Archtecture Takehro Sato, Kuntaka Ashzawa, Kazumasa Tokuhash, Dasuke Ish, Satoru Okamoto and Naoak Yamanaka Dept. of Informaton
Derivatives Math 120 Calculus I D Joyce, Fall 2013
Derivatives Mat 20 Calculus I D Joyce, Fall 203 Since we ave a good understanding of its, we can develop derivatives very quickly. Recall tat we defined te derivative f x of a function f at x to be te
Authenticated AODV Routing Protocol Using One-Time Signature and Transitive Signature Schemes
JOURNAL OF NETWORKS, VOL. 1, NO. 1, MAY 2006 47 Autentcated AODV Routng Protocol Usng One-Tme Sgnature and Transtve Sgnature Scemes Sd Xu Unversty of Wollongong, Wollongong, Australa Emal: [email protected]
Examensarbete. Rotating Workforce Scheduling. Caroline Granfeldt
Examensarbete Rotatng Workforce Schedulng Carolne Granfeldt LTH - MAT - EX - - 2015 / 08 - - SE Rotatng Workforce Schedulng Optmerngslära, Lnköpngs Unverstet Carolne Granfeldt LTH - MAT - EX - - 2015
GRAVITY DATA VALIDATION AND OUTLIER DETECTION USING L 1 -NORM
GRAVITY DATA VALIDATION AND OUTLIER DETECTION USING L 1 -NORM BARRIOT Jean-Perre, SARRAILH Mchel BGI/CNES 18.av.E.Beln 31401 TOULOUSE Cedex 4 (France) Emal: [email protected] 1/Introducton The
Sections 3.1/3.2: Introducing the Derivative/Rules of Differentiation
Sections 3.1/3.2: Introucing te Derivative/Rules of Differentiation 1 Tangent Line Before looking at te erivative, refer back to Section 2.1, looking at average velocity an instantaneous velocity. Here
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
RESEARCH ON DUAL-SHAKER SINE VIBRATION CONTROL. Yaoqi FENG 1, Hanping QIU 1. China Academy of Space Technology (CAST) yaoqi.feng@yahoo.
ICSV4 Carns Australa 9- July, 007 RESEARCH ON DUAL-SHAKER SINE VIBRATION CONTROL Yaoq FENG, Hanpng QIU Dynamc Test Laboratory, BISEE Chna Academy of Space Technology (CAST) [email protected] Abstract
