Why Bernstein Polynomials Are Better: Fuzzy-Inspired Justification

Size: px
Start display at page:

Download "Why Bernstein Polynomials Are Better: Fuzzy-Inspired Justification"

Transcription

1 Why Bernstein Polynomials Are Better: Fuzzy-Inspire Justification Jaime Nava 1, Olga Kosheleva 2, an Vlaik Kreinovich 3 1,3 Department of Computer Science 2 Department of Teacher Eucation University of Texas at El Paso 500 W University El Paso, TX 79968, USA 1 navajaime@gmailcom 2,3 {olgak,vlaik}@utepeu Abstract It is well known that an arbitrary continuous function on a boune set eg, on an interval [a, b] can be, with any given accuracy, approximate by a polynomial or by a piece-wise polynomial function spline) Usually, polynomials are escribe as linear combinations of monomials It turns out that in many computational problems, it is more efficient to represent each polynomial as a Bernstein polynomial eg, for functions of one variable, a linear combination of terms x a) k b x) n k In this paper, we provie a simple fuzzybase explanation of why Bernstein polynomials are often more efficient than linear combinations of monomials, an we show how this informal explanation can be transforme into a precise mathematical explanation I INTRODUCTION: POLYNOMIAL AND BERNSTEIN APPROXIMATIONS Functional epenencies are ubiquitous Several ifferent quantities are use to escribe the state of the worl or a state of a system in which are are intereste For example, to escribe the weather, we can escribe the temperature, the win spee, the humiity, etc Even in simple cases, to escribe the state of a simple mechanical boy at a given moment of time, we can escribe its coorinates, its velocity, its kinetic an potential energy, etc Some of these quantities can be irectly measure an sometimes, irect measurement is the only way that we can etermine their values However, once we have measure the values of a few basic quantities x 1,, x n, we can usually compute the values of all other quantities y by using the known epenence y = fx 1,, x n ) between these quantities Such functional epenencies are ubiquitous, they are extremely important in our analysis of real-worl ata Nee for polynomial approximations With the large amount of ata that are constantly generate by ifferent measuring evices, most of the ata processing is performe by computers So, we nee to represent each known functional epenence y = fx 1,, x n ) in a computer In a computer, among operations with real numbers, the only ones which are irectly harware supporte an are therefore extremely fast) are aition, subtraction, an multiplication All other operations with real numbers, incluing ivision, are implemente as a sequence of aitions, subtractions, an multiplications Also harware supporte are logical operations; these operations make it possible to use several ifferent computational expressions in ifferent parts of the function omain For example, computers use ifferent approximation for trigonometric functions like sinx) for x [ π, π] an for inputs from the other cycles Therefore, if we want to compute a function fx 1,, x n ), we must represent it, on each part of the omain, as a sequence of aitions, subtractions, an multiplications A function which is obtaine from variables x 1,, x n an constants by using aition, subtraction, an multiplication is nothing else but a polynomial Inee, one can easily check that every polynomial can be compute by a sequence of aitions, subtractions, an multiplications Vice versa, by inuction, one can easily prove that every sequence of aitions, subtractions, an multiplications leas to a polynomial; inee: inuction base is straightforwar: each variables x i is a polynomial, an each constant is a polynomial; inuction step is also straightforwar: the sum of two polynomials is a polynomial; the ifference between two polynomials is a polynomial; an the prouct of two polynomials is a polynomial Thus, we approximate functions by polynomials or by piecewise polynomial functions splines) Possibility of a polynomial approximation The possibility to approximate functions by polynomials was first proven by Weierstrass long before computers were invente) Specifically, Weierstrass showe that for every continuous function fx 1,, x n ), for every box multi-interval) [a 1, b 1 ] [a n, b n ], an for every real number ε > 0, there exists a polynomial P x 1,, x n ) which is, on this box, ε-close to the original

2 function fx 1,, x n ), ie, for which P x 1,, x n ) fx 1,, x n ) ε for all x 1 [a 1, b 1 ],, x n [a n, b n ] Polynomial an piece-wise polynomial) approximations to a functional epenence have been use in science for many centuries, they are one of the main tools in physics an other isciplines Such approximations are often base on the fact that most funamental physical epenencies are analytical, ie, can be expane in convergent Taylor polynomial) series Thus, to get a escription with a given accuracy on a given part of the omain, it is sufficient to keep only a few first terms in the Taylor expansion ie, in effect, to approximate the original function by a piece-wise polynomial expression; see, eg [1] How to represent polynomials in a computer: traitional approach A schoolbook efinition of a polynomial of one variable is that it is a function of the type fx) = c 0 + c 1 x + c 2 x c x From the viewpoint of this efinition, it is natural to represent a polynomial of one variable as a corresponing sequence of coefficients c 0, c 1, c 2, c This is exactly how polynomials of one variable are usually represente Similarly, a polynomial of several variables x 1,, x n is usually efine as linear combination of monomials, ie, expressions of the type x 1 1 x n n Thus, a natural way to represent a polynomial fx 1,, x n ) = c 1 n x 1 1 xn n 1,, n is to represent it as a corresponing multi-d array of coefficients c 1 n Bernstein polynomials: a escription It has been shown that in many computational problems, it is more efficient to use an alternative representation This alternative representation was first propose by a mathematician Bernstein, an so polynomials represente in this form are known as Bernstein polynomials For functions of one variable, Bernstein propose to represent a function as a linear combination c k x a) k b x) k k=0 of special polynomials p k x) = x a) k b x) k For functions of several variables, Bernstein s representation has the form fx 1,, x n ) = c k1k n p k11x 1 ) p knnx n ), k 1k n where p ki ix i ) ef = x i a i ) ki b i x i ) ki In this representation, we store the coefficients c k1 k n in the computer Bernstein polynomials are actively use, eg, in computer graphics an computer-aie esign, where they are not only more computationally efficient, but they also lea within a comparable computation time to smoother an more stable escriptions than traitional computer representations of polynomials Comment A representation of a polynomial as a linear combination of Bernstein polynomials is not the only computationally efficient alternative to a more traitional representation of a polynomial as a linear combination of monomials We can also represent a polynomial as a linear combination of polynomials from some orthogonal basis, or use Lagrange an Newton) polynomials that originate from Lagrange interpolation These polynomials are known an have been applie for several centuries There is a lot of experience of using these polynomials, an there are theoretical results that explain their computational avantages In contrast, Bernstein polynomials are less than a hunre years ol Their avantages are not as thoroughly explore as of other families of polynomials, their use is not as well theoretically justifie In short, there is a gap between the amount of known results about other types of polynomials an the much smaller amount of results about Bernstein polynomials In view of empirical usefulness of Bernstein polynomials, it is esirable to narrow this gap, by performing theoretical analysis of these polynomials The main objective of this paper is to contribute to this gap-narrowing Specifically, we provie a new fuzzymotivate justification of the Bernstein polynomials Bernstein polynomials are useful in interval an fuzzy computations Bernstein polynomials are useful in many computational problems In particular, they are useful in interval computations see, eg, [8]), when we are computing the range f[a 1, b 1 ],, [a n, b n ] ef = {fx 1,, x n ) : x 1 [a 1, b 1 ],, x n [a n, b n ]} of a function fx 1,, x n ) over a given box The efficiency of Bernstein polynomials in interval computations is shown in [2], [3], [4], [5], [9], [13] Such interval computations are extremely useful in fuzzy computations see, eg, [6], [12]), when we know fuzzy values of the inputs x 1,, x n ie, the corresponing membership functions µ i x i )), an we nee to fin the corresponing fuzzy value of y = fx 1,, x n ) ie, the membership function µy)) It turns out that for every α, the α-cut yα) = {y : µy) α} is equal to the range of the function fx 1,, x n ) over the corresponing α-cuts x i α) = {x i : µ i x i ) α}: yα) = fx 1 α),, x n α))

3 This is how fuzzy computations are usually performe by performing interval computations over the corresponing α- cuts, for ifferent values α [0, 1] Bernstein polynomials: open problem Empirically, it is known that the Bernstein polynomials are often more computationally efficient than the traitional monomials However, in spite of many efforts to explain this empirical efficiency, no convincing explanation has been foun so far What we o In this paper, we first show that by using fuzzy techniques, we can get a reasonable explanation of why Bernstein polynomials are more efficient than the traitional monomials Then, we show how this informal explanation can be transforme into a precise mathematical justification II BERNSTEIN POLYNOMIALS: FUZZY EXPLANATION Preliminary step: reucing all intervals to the interval [0, 1] We want to use fuzzy logic to analyze polynomial an piece-wise polynomial approximations In fuzzy logic, traitionally, possible truth values form an interval [0, 1] In some intelligent systems, other intervals are use eg, in the historically first expert system MYCIN the interval [ 1, 1] was use to escribe possible egrees of confience It is well known that it oes not matter much what interval we use since we can easily reuce values x from an interval [a, b] to values t from the interval [0, 1] by taking t = x a ; vice versa, b a once we know the new value t, we can easily reconstruct the original value x as x = a + t b a) To facilitate the use of traitional fuzzy techniques, let us therefore reuce all the intervals [a i, b i ] to the interval [0, 1] In other wors, instea of the original function fx 1,, x n ) : [a 1, b 1 ] [a n, b n ] IR, we consier a new function which is efine as F t 1,, t n ) : [0, 1] n IR, F t 1,, t n ) = fa 1 + t 1 b 1 a 1 ),, a n + t n b n a n )) Vice versa, if we fin a goo approximation F t 1,, t n ) to the new function F t 1,, t n ), we can easily generate an approximation fx 1,, x n ) to the original function fx 1,, x n ) as follows: fx 1,, x n ) = F x1 a 1 b 1 a 1,, x n a n b n a n ) Fuzzy-base function approximations: reminer Fuzzy techniques have been actively use to approximate functional epenencies: namely, such epenencies are approximate by fuzzy rules; see, eg, [6], [7], [12] The simplest case is when each rule has a fuzzy conition an a crisp conclusion, ie, has the type if x is P, then y = c, where P is a fuzzy property such as small ) characterize by a membership function µx), an c is a real number For the case of several inputs, we have rules of the type if x 1 is P 1, x 2 is P 2,, an x n is P n, then y = c The egree to which a given input x i satisfies the property P i is equal to µ i x i ), where µ i x) is the membership function corresponing to the property P i The egree to which the tuple x 1,, x n ) satisfies the conition of the rule ie, the statement x 1 is P 1, x 2 is P 2,, an x n is P n is therefore equal to f & µ 1 x 1 ),, µ n x n )), where f & is an appropriate t-norm an -operation) One of the simplest t-norms is the prouct f & a, b) = a b For this t-norm, the egree to which the above rule is satisfie is equal to the prouct µ 1 x 1 ) µ n x n ) of the corresponing membership egrees When we have several rules, then we get ifferent conclusions c 1,, c r with egrees 1,, r ; we nee to come up with a single values that combines these conclusions The larger the egree i, the more weight we shoul give to the conclusion c i A natural way is thus simply to take the weighte average c c r r This weighte average can be interprete in fuzzy terms if we interpret the combination as the following statement: either the conition for the 1st rule is satisfie an its conclusion is satisfie) or the conition for the 2n rule is satisfie an its conclusion is satisfie) or or the conition for the r-th rule is satisfie an its conclusion is satisfie), where we escribe an as multiplication an or as aition Resulting interpretation of the usual polynomial representation The functions of one variable, the traitional computer representations of a polynomial has the form c 0 + c 1 x + c 2 x c m x m The corresponing approximation can be interprete as the following set of fuzzy rules: c 0 with no conition); if x, then c 1 ; if x 2, then c 2 ; if x m, then c m In fuzzy logic, if we take x as the egree to which x [0, 1] is large, then: x 2 is usually interprete as very large, x 4 = x 2 ) 2 is interprete as very very large, x 8 = x 4 ) 2 = x 2 ) 2 ) 2 is interprete as very very very large, etc, an intermeiate powers x 3, x 5, x 7, etc, are interprete as as some intermeiate heges

4 Thus, the above rules have the form: c 0 ; if x is large, then c 1 ; if x is very large, then c 2, etc Similarly, for polynomials of several variables, we have as many rules as there are monomials c k1 k n x k 1 1 xk n n For example, a monomial c 012 x 0 1 x 1 1 x 2 2 = c 012 x 2 x 2 3 correspons to the following rule: if x 2 is large an x 3 is very large, then c 012 Fuzzy interpretation reveals limitations of the traitional computer representation of polynomials From the fuzzy viewpoint, there are two limitations to this interpretation The first limitation is relate to the fact that an accurate representation requires polynomials of higher egrees, with several istinct coefficients corresponing to ifferent heges such as very, very very, etc In practice, we humans can only meaningfully istinguish between a small number of heges, an this limits the possibility of meaningfully obtaining such rules from experts The secon limitation is that for the purposes of computational efficiency, it is esirable to have a computer representation in which as few terms as possible are neee to represent each function This can be achieve if in some important cases, some of the coefficients in the corresponing computer representation are close to 0 an can, therefore, be safely ignore For the above fuzzy representation, all the terms are meaningful, an there seems to be no reason why some of these terms can be ignore How can we overcome limitations of the traitional computer representation: fuzzy analysis of the problem From the fuzzy viewpoint, the traitional computer representation of polynomials correspons to taking into account the opinions of a single expert Theoretically, we can achieve high accuracy this way if we have an expert who can meaningfully istinguish between large, very large, very very large, etc However, most experts are not very goo in such a istinction A typical expert is at his or her best when this expert istinguishes between large an not large, any more complex istinctions are much harer Since we cannot get a goo approximation by using a single expert, why not use multiple experts? In this case, there is no nee to force an expert into making a ifficult istinction between very large an very very large So, we can as well use each expert where each expert is the strongest: by requiring each expert to istinguish between large an very large In this setting, once we have experts, for each variable x i, we have the following options: The first option is when all experts believe that x i is large: the 1st expert believes that x is large, the 2n believes that x i is large, etc Since we have ecie to use prouct for representing an, the egree to which this conition is satisfie is equal to x i x i = x i Another option is when 1 experts believe that x i is large, an the remaining expert believes that x is not large The corresponing egree is equal to x 1 i 1 x i ) In general, we can have k i experts believing that believing that x i is large an k i experts believing that x is not large The corresponing egree is equal to x k i i 1 x i ) k i For this variable, general weighte combinations of such rules lea to polynomials of the type c ki x k i i 1 x i ) k i, ie, k i to Bernstein polynomials of one variable For several variables, we have the egree p kiix i ) = x ki i 1 x i ) k i with which each variable x i satisfies the corresponing conition Hence, the egree to which all n variables satisfy the corresponing conition is equal to the prouct p k11x 1 ) p knnx n ) of these egrees Thus, the corresponing fuzzy rules lea to polynomials of the type c k1k n p k11x 1 ) p knnx n ), k 1,,k n ie, to Bernstein polynomials So, we inee get a fuzzy explanations for the emergence of Bernstein polynomials Why Bernstein polynomials are more computationally efficient: a fuzzy explanation Let us show that the above explanation of the Bernstein polynomials leas to the esire explanation of why the Bernstein polynomials are more computationally efficient than the traitional computer representation of polynomials Inee, the traitional polynomials correspon to rules in which conitions are x is large, x is very large, x is very very large, etc It may be ifficult to istinguish between these terms, but there is no reason to conclue that some of the corresponing terms become small In contrast, each term x ki i 1 x i ) k i from a Bernstein polynomial, with the only exception of cases k i = 0 an k i = D, correspons to the conition of the type x i is large very large, etc) an x i is not large very not large, etc) While in fuzzy logic, such a combination is possible, there are important cases when this value is close to 0 namely, in the practically important cases when we are either confient that x i is large or we are confient that x i is not large In these cases, the corresponing terms can be safely ignore, an thus, computations become inee more efficient III FROM FUZZY EXPLANATION TO A MORE PRECISE EXPLANATION Main iea Let us show that terms x k i i 1 x i ) k i corresponing to k i 0, ) are inee smaller an thus, some of them can inee be safely ignore To prove this fact, let us pick a threshol ε > 0 ε 1) an in each computer representation of polynomials, let us only keep the terms for which the largest possible value of this term oes not excee ε

5 Traitional computer representation of polynomials: analysis In the traitional representation, the terms are of the type x k1 1 xk n n When x i [0, 1], each such term is a prouct of the corresponing terms x k i i The resulting non-negative function is increasing in all its variables, an thus, its largest possible value is attaine when all the variables x i attain their largest possible value 1 The corresponing largest value is equal to 1 k1 1 kn = 1 Since the largest value of each term is 1, an 1 is larger than the threshol ε, all the terms will be retaine If we restrict ourselves to terms of orer for each variable x i, we get: + 1 possible terms for one variable: n + 1) 2 terms x k1, an x 0 i = 1, x 1 i = x, x 2 i,, x i, 1 xk2 2 for two variables, + 1) n terms in the general case of n variables This number of retaine terms grows exponentially with the number of variables n Bernstein polynomials: analysis For Bernstein polynomials, each term has the prouct form p k1 1x 1 ) p kn nx n ), where p kiix i ) = x ki i 1 x i ) ki The prouct of nonnegative numbers p ki ix i ) is a monotonic function of its factors Thus, its maximum is attaine when each of the factors p ki ix i ) = x k i i 1 x i ) k i is the largest possible Differentiating this expression with respect to x i, taking into account that the erivative of fx) = x k is equal to k x fx), an equating the resulting erivative to 0, we conclue that k i x i p ki ix i ) k i 1 x i p ki ix i ) = 0, ie, that k i = k i Multiplying both sies of this equality x i 1 x i by the common enominator of the two fractions, we get k i 1 x i ) = k i ) x i, ie, k i k i x i = x i k i x i Aing k i x i to both sies of this equation, we get k i = x i hence x i = k i Thus, the largest value of this term is equal to ) ki x ki i 1 x i ) k ki i = 1 k ) ki i This value is the largest for k i = 0 an k i =, when the corresponing maximum is equal to 1; as a function of k i, it first ecreases an then increases again So, if we want to consier values for which this term is large enough, we have to consier value k i which are close to 0 ie, k i ) or close to ie, k i ) For values k i which are close to 0, we have 1 k i ) ki 1 k i ) It is known that for large, this value is asymptotically equal to exp k i ) Thus, the logarithm ) ki ki of the corresponing maximum 1 k ) ki i is ) ki ki asymptotically equal to the logarithm of exp k i ), ie, to k i ln) lnk i ) + 1) Since we have k i, we get lnk i ) ln) an therefore, the esire logarithm is asymptotically equal to k i ln) For the values k i, we can get a similar asymptotic expression k i ) ln) Both expressions can be escribe as i ln), where i enotes mink i, k i ), ie, i = k i when k i, an i = k i when k i We want to fin all the tuples k 1,, k n ) for which the prouct of the terms p ki ix i ) corresponing to iniviual variables is larger than or equal to ε The logarithm of the prouct is equal to the sum of the logarithms, so the logarithm if the prouct is asymptotically equal to n i ln) Thus, the conition that the prouct is larger than or equal to ε is asymptotically equivalent to the inequality n ln) lnε), ie, to the inequality n i C ef = lnε) ln) The number of tuples of non-negative integers i that satisfy the inequality n i C can be easily foun from combinatorics Namely, we can escribe each such tuple if we start with C zeros an then place ones: we place the first one after 1 zeros, we place the secon one after 2 zeros following the first one, etc As a result, we get a sequence of C + n symbols of which C are zeros Vice versa, if we have a sequence of C +n symbols of which C are zeros an thus, n are ones), we can take: as 1 the number of 0s before the first one, as 2 the number of 0s between the first an the secon ones, etc Thus, the total number of such tuples is equal to the number of ways that we can place C zeros in a sequence of C + n symbols, ie, equal to ) C + n = C n + C) n + C 1) n + 1) 1 2 C When n is large, this number is asymptotically equal to const n C Each value i correspons to two ifferent values k i : the value k i = i an the value k i = k i

6 Thus, to each tuple 1,, n ), there correspon 2 n ifferent tuples k 1,, k n ) So, the total number of retaine tuples k 1,, k n ) ie, tuples for which the largest value of the corresponing term is ε is asymptotically equal to 2 n n C Conclusion: Bernstein polynomials are more efficient than monomials As we have shown: In the traitional computer representation of a polynomial of egree in each of the variables, we nee asymptotically + 1) n terms For Bernstein polynomials, we nee 2 n n C terms For large n, the factor n C grows much slower than the exponential term 2 n, an 2 n +1) n Thus, in the Bernstein representation of a polynomial, we inee nee much fewer terms than in the traitional computer representation an therefore, Bernstein polynomials are inee more efficient Comment There exist other explanations of why Bernstein polynomials are more computationally efficient; see, eg, [10] an references therein; the main avantage of our explanation is that it comes from fuzzy analysis an is, therefore, intuitively clearer than previously known explanations IV CONCLUSIONS In many practical problems, we approximate a epenence y = fx 1,, x n ) of a quantity y on the quantities x 1,, x n by polynomials or by piece-wise polynomial functions splines) The accuracy an computational efficiency of the resulting approximation epens on how we represent the corresponing polynomials A polynomial is usually efine as a linear composition of monomials n n n fx 1,, x n ) = c 0 + c i x i + c ij x i x j + j=1 Because of this, the traitional way to represent a polynomial in a computer is to keep the corresponing coefficients c 0, c 1,, c n, c 11,, c 1n,, c n1,, c nn, In many cases, however, it is more computationally efficient, for each box [a 1, b 1 ] [a n, b n ], to represent polynomials on this box as linear combinations of so-calle Bernstein polynomials x 1 a 1 ) k1 b 1 x 1 ) k1 x n a n ) kn b n x n ) k n While empirically, this representation is often more efficient, there has been no intuitively convincing theoretical explanations for this efficiency In this paper, we use fuzzy logic to provie an intuitive theoretical explanation of why Bernstein polynomials are more efficient than the traitional monomial representations of polynomials Specifically, we first provie a fuzzy interpretation of Bernstein polynomials, an then we transform this intuitive interpretation into the precise justification of the relative efficiency of Bernstein polynomials ACKNOWLEDGMENT This work was supporte in part by the National Science Founation grants HRD Cyber-ShARE Center of Excellence) an DUE , an by Grant 1 T36 GM from the National Institutes of Health The authors are thankful to anonymous referees for valuable suggestions REFERENCES [1] R P Feynman, R B Leighton, an M Sans, Feynman Lectures on Physics, Aison-Wesley, Boston, Massachusetts, 2005 [2] J Garloff, The Bernstein algorithm, Interval Computation, 1993, Vol 2, pp [3] J Garloff, The Bernstein expansion an its applications, Journal of the American Romanian Acaemy, 2003, Vol 25 27, pp [4] J Garloff an B Graf, Solving strict polynomial inequalities by Bernstein expansion, In N Munro, eitor, The Use of Symbolic Methos in Control System Analysis an Design, volume 56 of IEE Contr Eng, Lonon, 1999, pp [5] J Garloff an A P Smith, Solution of systems of polynomial equations by using Bernstein polynomials, In: G Alefel, J Rohn, S Rump, an T Yamamoto es), Symbolic Algebraic Methos an Verification Methos: Theory an Application, Springer-Verlag, Wien, 2001, pp [6] G J Klir an B Yuan, Fuzzy Sets an Fuzzy Logic, Prentice Hall, Upper Sale River, New Jersey, 1995 [7] V Kreinovich, G C Mouzouris, an H T Nguyen, Fuzzy rule base moeling as a universal approximation tool, In: H T Nguyen an M Sugeno es), Fuzzy Systems: Moeling an Control, Kluwer, Boston, Massachusetts, 1998, pp [8] R E Moore, R B Kearfott, an M J Clou, Introuction to Interval Analysis, SIAM Press, Philaelphia, Pennsylvania, 2009 [9] P S V Nataraj an M Arounassalame, A new subivision algorithm for the Bernstein polynomial approach to global optimization, International Journal of Automation an Computing, 2007, Vol 4, pp [10] J Nava an V Kreinovich, Theoretical Explanation of Bernstein Polynomials Efficiency: They Are Optimal Combination of Optimal Enpoint- Relate Functions, University of Texas at El Paso, Department of Computer Science, Technical Report UTEP-CS-11-37, July 2011, available as [11] H T Nguyen an V Kreinovich, Applications of continuous mathematics to computer science, Kluwer, Dorrecht, 1997 [12] H T Nguyen an E A Walker, First Course In Fuzzy Logic, CRC Press, Boca Raton, Floria, 2006 [13] S Ray an P S V Nataraj, A New Strategy For Selecting Subivision Point In The Bernstein Approach To Polynomial Optimization, Reliable Computing, 2010, Vol 14, pp [14] L A Zaeh, Fuzzy sets, Information an control, 1965, Vol 8, pp

QF101: Quantitative Finance September 5, Week 3: Derivatives. Facilitator: Christopher Ting AY 2017/2018. f ( x + ) f(x) f(x) = lim

QF101: Quantitative Finance September 5, Week 3: Derivatives. Facilitator: Christopher Ting AY 2017/2018. f ( x + ) f(x) f(x) = lim QF101: Quantitative Finance September 5, 2017 Week 3: Derivatives Facilitator: Christopher Ting AY 2017/2018 I recoil with ismay an horror at this lamentable plague of functions which o not have erivatives.

More information

Pure Further Mathematics 1. Revision Notes

Pure Further Mathematics 1. Revision Notes Pure Further Mathematics Revision Notes June 20 2 FP JUNE 20 SDB Further Pure Complex Numbers... 3 Definitions an arithmetical operations... 3 Complex conjugate... 3 Properties... 3 Complex number plane,

More information

Checking Monotonicity is NP-Hard Even for Cubic Polynomials

Checking Monotonicity is NP-Hard Even for Cubic Polynomials Checking Monotonicity is NP-Hard Even for Cubic Polynomials Andrzej Pownuk 1, Luc Longpré 2, and Vladik Kreinovich 2 Departments of 1 Mathematical Sciences and 2 Computer Science, University of Texas at

More information

Linear First-Order Equations

Linear First-Order Equations 5 Linear First-Orer Equations Linear first-orer ifferential equations make up another important class of ifferential equations that commonly arise in applications an are relatively easy to solve (in theory)

More information

SYNCHRONOUS SEQUENTIAL CIRCUITS

SYNCHRONOUS SEQUENTIAL CIRCUITS CHAPTER SYNCHRONOUS SEUENTIAL CIRCUITS Registers an counters, two very common synchronous sequential circuits, are introuce in this chapter. Register is a igital circuit for storing information. Contents

More information

Math 115 Section 018 Course Note

Math 115 Section 018 Course Note Course Note 1 General Functions Definition 1.1. A function is a rule that takes certain numbers as inputs an assigns to each a efinite output number. The set of all input numbers is calle the omain of

More information

Linear and quadratic approximation

Linear and quadratic approximation Linear an quaratic approximation November 11, 2013 Definition: Suppose f is a function that is ifferentiable on an interval I containing the point a. The linear approximation to f at a is the linear function

More information

Math 342 Partial Differential Equations «Viktor Grigoryan

Math 342 Partial Differential Equations «Viktor Grigoryan Math 342 Partial Differential Equations «Viktor Grigoryan 6 Wave equation: solution In this lecture we will solve the wave equation on the entire real line x R. This correspons to a string of infinite

More information

Survey Sampling. 1 Design-based Inference. Kosuke Imai Department of Politics, Princeton University. February 19, 2013

Survey Sampling. 1 Design-based Inference. Kosuke Imai Department of Politics, Princeton University. February 19, 2013 Survey Sampling Kosuke Imai Department of Politics, Princeton University February 19, 2013 Survey sampling is one of the most commonly use ata collection methos for social scientists. We begin by escribing

More information

Unit #6 - Families of Functions, Taylor Polynomials, l Hopital s Rule

Unit #6 - Families of Functions, Taylor Polynomials, l Hopital s Rule Unit # - Families of Functions, Taylor Polynomials, l Hopital s Rule Some problems an solutions selecte or aapte from Hughes-Hallett Calculus. Critical Points. Consier the function f) = 54 +. b) a) Fin

More information

How to Define "and"- and "or"-operations for Intuitionistic and Picture Fuzzy Sets

How to Define and- and or-operations for Intuitionistic and Picture Fuzzy Sets University of Texas at El Paso DigitalCommons@UTEP Departmental Technical Reports (CS) Computer Science 3-2019 How to Define "and"- and "or"-operations for Intuitionistic and Picture Fuzzy Sets Christian

More information

Computations Under Time Constraints: Algorithms Developed for Fuzzy Computations can Help

Computations Under Time Constraints: Algorithms Developed for Fuzzy Computations can Help Journal of Uncertain Systems Vol.6, No.2, pp.138-145, 2012 Online at: www.jus.org.uk Computations Under Time Constraints: Algorithms Developed for Fuzzy Computations can Help Karen Villaverde 1, Olga Kosheleva

More information

Lecture 2 Lagrangian formulation of classical mechanics Mechanics

Lecture 2 Lagrangian formulation of classical mechanics Mechanics Lecture Lagrangian formulation of classical mechanics 70.00 Mechanics Principle of stationary action MATH-GA To specify a motion uniquely in classical mechanics, it suffices to give, at some time t 0,

More information

Final Exam Study Guide and Practice Problems Solutions

Final Exam Study Guide and Practice Problems Solutions Final Exam Stuy Guie an Practice Problems Solutions Note: These problems are just some of the types of problems that might appear on the exam. However, to fully prepare for the exam, in aition to making

More information

The derivative of a function f(x) is another function, defined in terms of a limiting expression: f(x + δx) f(x)

The derivative of a function f(x) is another function, defined in terms of a limiting expression: f(x + δx) f(x) Y. D. Chong (2016) MH2801: Complex Methos for the Sciences 1. Derivatives The erivative of a function f(x) is another function, efine in terms of a limiting expression: f (x) f (x) lim x δx 0 f(x + δx)

More information

Make graph of g by adding c to the y-values. on the graph of f by c. multiplying the y-values. even-degree polynomial. graph goes up on both sides

Make graph of g by adding c to the y-values. on the graph of f by c. multiplying the y-values. even-degree polynomial. graph goes up on both sides Reference 1: Transformations of Graphs an En Behavior of Polynomial Graphs Transformations of graphs aitive constant constant on the outsie g(x) = + c Make graph of g by aing c to the y-values on the graph

More information

Differentiation ( , 9.5)

Differentiation ( , 9.5) Chapter 2 Differentiation (8.1 8.3, 9.5) 2.1 Rate of Change (8.2.1 5) Recall that the equation of a straight line can be written as y = mx + c, where m is the slope or graient of the line, an c is the

More information

NOTES ON EULER-BOOLE SUMMATION (1) f (l 1) (n) f (l 1) (m) + ( 1)k 1 k! B k (y) f (k) (y) dy,

NOTES ON EULER-BOOLE SUMMATION (1) f (l 1) (n) f (l 1) (m) + ( 1)k 1 k! B k (y) f (k) (y) dy, NOTES ON EULER-BOOLE SUMMATION JONATHAN M BORWEIN, NEIL J CALKIN, AND DANTE MANNA Abstract We stuy a connection between Euler-MacLaurin Summation an Boole Summation suggeste in an AMM note from 196, which

More information

Implicit Differentiation

Implicit Differentiation Implicit Differentiation Thus far, the functions we have been concerne with have been efine explicitly. A function is efine explicitly if the output is given irectly in terms of the input. For instance,

More information

4.2 First Differentiation Rules; Leibniz Notation

4.2 First Differentiation Rules; Leibniz Notation .. FIRST DIFFERENTIATION RULES; LEIBNIZ NOTATION 307. First Differentiation Rules; Leibniz Notation In this section we erive rules which let us quickly compute the erivative function f (x) for any polynomial

More information

Calculus and optimization

Calculus and optimization Calculus an optimization These notes essentially correspon to mathematical appenix 2 in the text. 1 Functions of a single variable Now that we have e ne functions we turn our attention to calculus. A function

More information

Calculus in the AP Physics C Course The Derivative

Calculus in the AP Physics C Course The Derivative Limits an Derivatives Calculus in the AP Physics C Course The Derivative In physics, the ieas of the rate change of a quantity (along with the slope of a tangent line) an the area uner a curve are essential.

More information

SYDE 112, LECTURE 1: Review & Antidifferentiation

SYDE 112, LECTURE 1: Review & Antidifferentiation SYDE 112, LECTURE 1: Review & Antiifferentiation 1 Course Information For a etaile breakown of the course content an available resources, see the Course Outline. Other relevant information for this section

More information

The Principle of Least Action

The Principle of Least Action Chapter 7. The Principle of Least Action 7.1 Force Methos vs. Energy Methos We have so far stuie two istinct ways of analyzing physics problems: force methos, basically consisting of the application of

More information

Math 1271 Solutions for Fall 2005 Final Exam

Math 1271 Solutions for Fall 2005 Final Exam Math 7 Solutions for Fall 5 Final Eam ) Since the equation + y = e y cannot be rearrange algebraically in orer to write y as an eplicit function of, we must instea ifferentiate this relation implicitly

More information

Lecture 6: Calculus. In Song Kim. September 7, 2011

Lecture 6: Calculus. In Song Kim. September 7, 2011 Lecture 6: Calculus In Song Kim September 7, 20 Introuction to Differential Calculus In our previous lecture we came up with several ways to analyze functions. We saw previously that the slope of a linear

More information

19 Eigenvalues, Eigenvectors, Ordinary Differential Equations, and Control

19 Eigenvalues, Eigenvectors, Ordinary Differential Equations, and Control 19 Eigenvalues, Eigenvectors, Orinary Differential Equations, an Control This section introuces eigenvalues an eigenvectors of a matrix, an iscusses the role of the eigenvalues in etermining the behavior

More information

Lectures - Week 10 Introduction to Ordinary Differential Equations (ODES) First Order Linear ODEs

Lectures - Week 10 Introduction to Ordinary Differential Equations (ODES) First Order Linear ODEs Lectures - Week 10 Introuction to Orinary Differential Equations (ODES) First Orer Linear ODEs When stuying ODEs we are consiering functions of one inepenent variable, e.g., f(x), where x is the inepenent

More information

Membership Functions Representing a Number vs. Representing a Set: Proof of Unique Reconstruction

Membership Functions Representing a Number vs. Representing a Set: Proof of Unique Reconstruction Membership Functions Representing a Number vs. Representing a Set: Proof of Unique Reconstruction Hung T. Nguyen Department of Mathematical Sciences New Mexico State University Las Cruces, New Mexico 88008,

More information

Problem Sheet 2: Eigenvalues and eigenvectors and their use in solving linear ODEs

Problem Sheet 2: Eigenvalues and eigenvectors and their use in solving linear ODEs Problem Sheet 2: Eigenvalues an eigenvectors an their use in solving linear ODEs If you fin any typos/errors in this problem sheet please email jk28@icacuk The material in this problem sheet is not examinable

More information

Lecture Introduction. 2 Examples of Measure Concentration. 3 The Johnson-Lindenstrauss Lemma. CS-621 Theory Gems November 28, 2012

Lecture Introduction. 2 Examples of Measure Concentration. 3 The Johnson-Lindenstrauss Lemma. CS-621 Theory Gems November 28, 2012 CS-6 Theory Gems November 8, 0 Lecture Lecturer: Alesaner Mąry Scribes: Alhussein Fawzi, Dorina Thanou Introuction Toay, we will briefly iscuss an important technique in probability theory measure concentration

More information

On the Enumeration of Double-Base Chains with Applications to Elliptic Curve Cryptography

On the Enumeration of Double-Base Chains with Applications to Elliptic Curve Cryptography On the Enumeration of Double-Base Chains with Applications to Elliptic Curve Cryptography Christophe Doche Department of Computing Macquarie University, Australia christophe.oche@mq.eu.au. Abstract. The

More information

A. Incorrect! The letter t does not appear in the expression of the given integral

A. Incorrect! The letter t does not appear in the expression of the given integral AP Physics C - Problem Drill 1: The Funamental Theorem of Calculus Question No. 1 of 1 Instruction: (1) Rea the problem statement an answer choices carefully () Work the problems on paper as neee (3) Question

More information

Lecture 5. Symmetric Shearer s Lemma

Lecture 5. Symmetric Shearer s Lemma Stanfor University Spring 208 Math 233: Non-constructive methos in combinatorics Instructor: Jan Vonrák Lecture ate: January 23, 208 Original scribe: Erik Bates Lecture 5 Symmetric Shearer s Lemma Here

More information

JUST THE MATHS UNIT NUMBER DIFFERENTIATION 2 (Rates of change) A.J.Hobson

JUST THE MATHS UNIT NUMBER DIFFERENTIATION 2 (Rates of change) A.J.Hobson JUST THE MATHS UNIT NUMBER 10.2 DIFFERENTIATION 2 (Rates of change) by A.J.Hobson 10.2.1 Introuction 10.2.2 Average rates of change 10.2.3 Instantaneous rates of change 10.2.4 Derivatives 10.2.5 Exercises

More information

Interconnected Systems of Fliess Operators

Interconnected Systems of Fliess Operators Interconnecte Systems of Fliess Operators W. Steven Gray Yaqin Li Department of Electrical an Computer Engineering Ol Dominion University Norfolk, Virginia 23529 USA Abstract Given two analytic nonlinear

More information

Table of Common Derivatives By David Abraham

Table of Common Derivatives By David Abraham Prouct an Quotient Rules: Table of Common Derivatives By Davi Abraham [ f ( g( ] = [ f ( ] g( + f ( [ g( ] f ( = g( [ f ( ] g( g( f ( [ g( ] Trigonometric Functions: sin( = cos( cos( = sin( tan( = sec

More information

Differentiability, Computing Derivatives, Trig Review. Goals:

Differentiability, Computing Derivatives, Trig Review. Goals: Secants vs. Derivatives - Unit #3 : Goals: Differentiability, Computing Derivatives, Trig Review Determine when a function is ifferentiable at a point Relate the erivative graph to the the graph of an

More information

THE ACCURATE ELEMENT METHOD: A NEW PARADIGM FOR NUMERICAL SOLUTION OF ORDINARY DIFFERENTIAL EQUATIONS

THE ACCURATE ELEMENT METHOD: A NEW PARADIGM FOR NUMERICAL SOLUTION OF ORDINARY DIFFERENTIAL EQUATIONS THE PUBISHING HOUSE PROCEEDINGS O THE ROMANIAN ACADEMY, Series A, O THE ROMANIAN ACADEMY Volume, Number /, pp. 6 THE ACCURATE EEMENT METHOD: A NEW PARADIGM OR NUMERICA SOUTION O ORDINARY DIERENTIA EQUATIONS

More information

Euler equations for multiple integrals

Euler equations for multiple integrals Euler equations for multiple integrals January 22, 2013 Contents 1 Reminer of multivariable calculus 2 1.1 Vector ifferentiation......................... 2 1.2 Matrix ifferentiation........................

More information

Lagrangian and Hamiltonian Mechanics

Lagrangian and Hamiltonian Mechanics Lagrangian an Hamiltonian Mechanics.G. Simpson, Ph.. epartment of Physical Sciences an Engineering Prince George s Community College ecember 5, 007 Introuction In this course we have been stuying classical

More information

Why Trapezoidal and Triangular Membership Functions Work So Well: Towards a Theoretical Explanation

Why Trapezoidal and Triangular Membership Functions Work So Well: Towards a Theoretical Explanation Journal of Uncertain Systems Vol.8, No.3, pp.164-168, 2014 Online at: www.jus.org.uk Why Trapezoidal and Triangular Membership Functions Work So Well: Towards a Theoretical Explanation Aditi Barua, Lalitha

More information

Diophantine Approximations: Examining the Farey Process and its Method on Producing Best Approximations

Diophantine Approximations: Examining the Farey Process and its Method on Producing Best Approximations Diophantine Approximations: Examining the Farey Process an its Metho on Proucing Best Approximations Kelly Bowen Introuction When a person hears the phrase irrational number, one oes not think of anything

More information

Differentiability, Computing Derivatives, Trig Review

Differentiability, Computing Derivatives, Trig Review Unit #3 : Differentiability, Computing Derivatives, Trig Review Goals: Determine when a function is ifferentiable at a point Relate the erivative graph to the the graph of an original function Compute

More information

ALGEBRAIC AND ANALYTIC PROPERTIES OF ARITHMETIC FUNCTIONS

ALGEBRAIC AND ANALYTIC PROPERTIES OF ARITHMETIC FUNCTIONS ALGEBRAIC AND ANALYTIC PROPERTIES OF ARITHMETIC FUNCTIONS MARK SCHACHNER Abstract. When consiere as an algebraic space, the set of arithmetic functions equippe with the operations of pointwise aition an

More information

When Can We Reduce Multi-Variable Range Estimation Problem to Two Fewer-Variable Problems?

When Can We Reduce Multi-Variable Range Estimation Problem to Two Fewer-Variable Problems? University of Texas at El Paso DigitalCommons@UTEP Departmental Technical Reports (CS) Department of Computer Science 12-2014 When Can We Reduce Multi-Variable Range Estimation Problem to Two Fewer-Variable

More information

Computing Derivatives

Computing Derivatives Chapter 2 Computing Derivatives 2.1 Elementary erivative rules Motivating Questions In this section, we strive to unerstan the ieas generate by the following important questions: What are alternate notations

More information

LATTICE-BASED D-OPTIMUM DESIGN FOR FOURIER REGRESSION

LATTICE-BASED D-OPTIMUM DESIGN FOR FOURIER REGRESSION The Annals of Statistics 1997, Vol. 25, No. 6, 2313 2327 LATTICE-BASED D-OPTIMUM DESIGN FOR FOURIER REGRESSION By Eva Riccomagno, 1 Rainer Schwabe 2 an Henry P. Wynn 1 University of Warwick, Technische

More information

Sturm-Liouville Theory

Sturm-Liouville Theory LECTURE 5 Sturm-Liouville Theory In the three preceing lectures I emonstrate the utility of Fourier series in solving PDE/BVPs. As we ll now see, Fourier series are just the tip of the iceberg of the theory

More information

1 dx. where is a large constant, i.e., 1, (7.6) and Px is of the order of unity. Indeed, if px is given by (7.5), the inequality (7.

1 dx. where is a large constant, i.e., 1, (7.6) and Px is of the order of unity. Indeed, if px is given by (7.5), the inequality (7. Lectures Nine an Ten The WKB Approximation The WKB metho is a powerful tool to obtain solutions for many physical problems It is generally applicable to problems of wave propagation in which the frequency

More information

The total derivative. Chapter Lagrangian and Eulerian approaches

The total derivative. Chapter Lagrangian and Eulerian approaches Chapter 5 The total erivative 51 Lagrangian an Eulerian approaches The representation of a flui through scalar or vector fiels means that each physical quantity uner consieration is escribe as a function

More information

II. First variation of functionals

II. First variation of functionals II. First variation of functionals The erivative of a function being zero is a necessary conition for the etremum of that function in orinary calculus. Let us now tackle the question of the equivalent

More information

Agmon Kolmogorov Inequalities on l 2 (Z d )

Agmon Kolmogorov Inequalities on l 2 (Z d ) Journal of Mathematics Research; Vol. 6, No. ; 04 ISSN 96-9795 E-ISSN 96-9809 Publishe by Canaian Center of Science an Eucation Agmon Kolmogorov Inequalities on l (Z ) Arman Sahovic Mathematics Department,

More information

and from it produce the action integral whose variation we set to zero:

and from it produce the action integral whose variation we set to zero: Lagrange Multipliers Monay, 6 September 01 Sometimes it is convenient to use reunant coorinates, an to effect the variation of the action consistent with the constraints via the metho of Lagrange unetermine

More information

Computing Exact Confidence Coefficients of Simultaneous Confidence Intervals for Multinomial Proportions and their Functions

Computing Exact Confidence Coefficients of Simultaneous Confidence Intervals for Multinomial Proportions and their Functions Working Paper 2013:5 Department of Statistics Computing Exact Confience Coefficients of Simultaneous Confience Intervals for Multinomial Proportions an their Functions Shaobo Jin Working Paper 2013:5

More information

2Algebraic ONLINE PAGE PROOFS. foundations

2Algebraic ONLINE PAGE PROOFS. foundations Algebraic founations. Kick off with CAS. Algebraic skills.3 Pascal s triangle an binomial expansions.4 The binomial theorem.5 Sets of real numbers.6 Surs.7 Review . Kick off with CAS Playing lotto Using

More information

Chapter 2 Lagrangian Modeling

Chapter 2 Lagrangian Modeling Chapter 2 Lagrangian Moeling The basic laws of physics are use to moel every system whether it is electrical, mechanical, hyraulic, or any other energy omain. In mechanics, Newton s laws of motion provie

More information

EVALUATING HIGHER DERIVATIVE TENSORS BY FORWARD PROPAGATION OF UNIVARIATE TAYLOR SERIES

EVALUATING HIGHER DERIVATIVE TENSORS BY FORWARD PROPAGATION OF UNIVARIATE TAYLOR SERIES MATHEMATICS OF COMPUTATION Volume 69, Number 231, Pages 1117 1130 S 0025-5718(00)01120-0 Article electronically publishe on February 17, 2000 EVALUATING HIGHER DERIVATIVE TENSORS BY FORWARD PROPAGATION

More information

IPA Derivatives for Make-to-Stock Production-Inventory Systems With Backorders Under the (R,r) Policy

IPA Derivatives for Make-to-Stock Production-Inventory Systems With Backorders Under the (R,r) Policy IPA Derivatives for Make-to-Stock Prouction-Inventory Systems With Backorers Uner the (Rr) Policy Yihong Fan a Benamin Melame b Yao Zhao c Yorai Wari Abstract This paper aresses Infinitesimal Perturbation

More information

Generalized Tractability for Multivariate Problems

Generalized Tractability for Multivariate Problems Generalize Tractability for Multivariate Problems Part II: Linear Tensor Prouct Problems, Linear Information, an Unrestricte Tractability Michael Gnewuch Department of Computer Science, University of Kiel,

More information

Schrödinger s equation.

Schrödinger s equation. Physics 342 Lecture 5 Schröinger s Equation Lecture 5 Physics 342 Quantum Mechanics I Wenesay, February 3r, 2010 Toay we iscuss Schröinger s equation an show that it supports the basic interpretation of

More information

On the enumeration of partitions with summands in arithmetic progression

On the enumeration of partitions with summands in arithmetic progression AUSTRALASIAN JOURNAL OF COMBINATORICS Volume 8 (003), Pages 149 159 On the enumeration of partitions with summans in arithmetic progression M. A. Nyblom C. Evans Department of Mathematics an Statistics

More information

Introduction to variational calculus: Lecture notes 1

Introduction to variational calculus: Lecture notes 1 October 10, 2006 Introuction to variational calculus: Lecture notes 1 Ewin Langmann Mathematical Physics, KTH Physics, AlbaNova, SE-106 91 Stockholm, Sween Abstract I give an informal summary of variational

More information

Calculus Class Notes for the Combined Calculus and Physics Course Semester I

Calculus Class Notes for the Combined Calculus and Physics Course Semester I Calculus Class Notes for the Combine Calculus an Physics Course Semester I Kelly Black December 14, 2001 Support provie by the National Science Founation - NSF-DUE-9752485 1 Section 0 2 Contents 1 Average

More information

Solutions to Practice Problems Tuesday, October 28, 2008

Solutions to Practice Problems Tuesday, October 28, 2008 Solutions to Practice Problems Tuesay, October 28, 2008 1. The graph of the function f is shown below. Figure 1: The graph of f(x) What is x 1 + f(x)? What is x 1 f(x)? An oes x 1 f(x) exist? If so, what

More information

Polynomial Inclusion Functions

Polynomial Inclusion Functions Polynomial Inclusion Functions E. e Weert, E. van Kampen, Q. P. Chu, an J. A. Muler Delft University of Technology, Faculty of Aerospace Engineering, Control an Simulation Division E.eWeert@TUDelft.nl

More information

Similar Operators and a Functional Calculus for the First-Order Linear Differential Operator

Similar Operators and a Functional Calculus for the First-Order Linear Differential Operator Avances in Applie Mathematics, 9 47 999 Article ID aama.998.067, available online at http: www.iealibrary.com on Similar Operators an a Functional Calculus for the First-Orer Linear Differential Operator

More information

Which Bio-Diversity Indices Are Most Adequate

Which Bio-Diversity Indices Are Most Adequate Which Bio-Diversity Indices Are Most Adequate Olga Kosheleva Department of Teacher Education University of Texas at El Paso 500 W. University El Paso, Texas 79968 olgak@utep.edu Craig Tweedie Environmental

More information

Formalizing the Informal, Precisiating the Imprecise: How Fuzzy Logic Can Help Mathematicians and Physicists by Formalizing Their Intuitive Ideas

Formalizing the Informal, Precisiating the Imprecise: How Fuzzy Logic Can Help Mathematicians and Physicists by Formalizing Their Intuitive Ideas University of Texas at El Paso DigitalCommons@UTEP Departmental Technical Reports CS) Department of Computer Science 9-2014 Formalizing the Informal, Precisiating the Imprecise: How Fuzzy Logic Can Help

More information

Control Volume Derivations for Thermodynamics

Control Volume Derivations for Thermodynamics Control olume Derivations for Thermoynamics J. M. Powers University of Notre Dame AME 327 Fall 2003 This ocument will give a summary of the necessary mathematical operations necessary to cast the conservation

More information

Combining Interval, Probabilistic, and Fuzzy Uncertainty: Foundations, Algorithms, Challenges An Overview

Combining Interval, Probabilistic, and Fuzzy Uncertainty: Foundations, Algorithms, Challenges An Overview Combining Interval, Probabilistic, and Fuzzy Uncertainty: Foundations, Algorithms, Challenges An Overview Vladik Kreinovich 1, Daniel J. Berleant 2, Scott Ferson 3, and Weldon A. Lodwick 4 1 University

More information

Lecture XII. where Φ is called the potential function. Let us introduce spherical coordinates defined through the relations

Lecture XII. where Φ is called the potential function. Let us introduce spherical coordinates defined through the relations Lecture XII Abstract We introuce the Laplace equation in spherical coorinates an apply the metho of separation of variables to solve it. This will generate three linear orinary secon orer ifferential equations:

More information

Math 1B, lecture 8: Integration by parts

Math 1B, lecture 8: Integration by parts Math B, lecture 8: Integration by parts Nathan Pflueger 23 September 2 Introuction Integration by parts, similarly to integration by substitution, reverses a well-known technique of ifferentiation an explores

More information

Further Differentiation and Applications

Further Differentiation and Applications Avance Higher Notes (Unit ) Prerequisites: Inverse function property; prouct, quotient an chain rules; inflexion points. Maths Applications: Concavity; ifferentiability. Real-Worl Applications: Particle

More information

Math 210 Midterm #1 Review

Math 210 Midterm #1 Review Math 20 Miterm # Review This ocument is intene to be a rough outline of what you are expecte to have learne an retaine from this course to be prepare for the first miterm. : Functions Definition: A function

More information

Math 1272 Solutions for Spring 2005 Final Exam. asked to find the limit of the sequence. This is equivalent to evaluating lim. lim.

Math 1272 Solutions for Spring 2005 Final Exam. asked to find the limit of the sequence. This is equivalent to evaluating lim. lim. Math 7 Solutions for Spring 5 Final Exam ) We are gien an infinite sequence for which the general term is a n 3 + 5n n + n an are 3 + 5n aske to fin the limit of the sequence. This is equialent to ealuating

More information

The Exact Form and General Integrating Factors

The Exact Form and General Integrating Factors 7 The Exact Form an General Integrating Factors In the previous chapters, we ve seen how separable an linear ifferential equations can be solve using methos for converting them to forms that can be easily

More information

Assignment 1. g i (x 1,..., x n ) dx i = 0. i=1

Assignment 1. g i (x 1,..., x n ) dx i = 0. i=1 Assignment 1 Golstein 1.4 The equations of motion for the rolling isk are special cases of general linear ifferential equations of constraint of the form g i (x 1,..., x n x i = 0. i=1 A constraint conition

More information

Differentiation Rules Derivatives of Polynomials and Exponential Functions

Differentiation Rules Derivatives of Polynomials and Exponential Functions Derivatives of Polynomials an Exponential Functions Differentiation Rules Derivatives of Polynomials an Exponential Functions Let s start with the simplest of all functions, the constant function f(x)

More information

Why Bellman-Zadeh Approach to Fuzzy Optimization

Why Bellman-Zadeh Approach to Fuzzy Optimization Applied Mathematical Sciences, Vol. 12, 2018, no. 11, 517-522 HIKARI Ltd, www.m-hikari.com https://doi.org/10.12988/ams.2018.8456 Why Bellman-Zadeh Approach to Fuzzy Optimization Olga Kosheleva 1 and Vladik

More information

Exam 2 Answers Math , Fall log x dx = x log x x + C. log u du = 1 3

Exam 2 Answers Math , Fall log x dx = x log x x + C. log u du = 1 3 Exam Answers Math -, Fall 7. Show, using any metho you like, that log x = x log x x + C. Answer: (x log x x+c) = x x + log x + = log x. Thus log x = x log x x+c.. Compute these. Remember to put boxes aroun

More information

d dx [xn ] = nx n 1. (1) dy dx = 4x4 1 = 4x 3. Theorem 1.3 (Derivative of a constant function). If f(x) = k and k is a constant, then f (x) = 0.

d dx [xn ] = nx n 1. (1) dy dx = 4x4 1 = 4x 3. Theorem 1.3 (Derivative of a constant function). If f(x) = k and k is a constant, then f (x) = 0. Calculus refresher Disclaimer: I claim no original content on this ocument, which is mostly a summary-rewrite of what any stanar college calculus book offers. (Here I ve use Calculus by Dennis Zill.) I

More information

1 Lecture 13: The derivative as a function.

1 Lecture 13: The derivative as a function. 1 Lecture 13: Te erivative as a function. 1.1 Outline Definition of te erivative as a function. efinitions of ifferentiability. Power rule, erivative te exponential function Derivative of a sum an a multiple

More information

c 2003 Society for Industrial and Applied Mathematics

c 2003 Society for Industrial and Applied Mathematics SIAM J DISCRETE MATH Vol 7, No, pp 7 c 23 Society for Inustrial an Applie Mathematics SOME NEW ASPECTS OF THE COUPON COLLECTOR S PROBLEM AMY N MYERS AND HERBERT S WILF Abstract We exten the classical coupon

More information

Calculus of Variations

Calculus of Variations 16.323 Lecture 5 Calculus of Variations Calculus of Variations Most books cover this material well, but Kirk Chapter 4 oes a particularly nice job. x(t) x* x*+ αδx (1) x*- αδx (1) αδx (1) αδx (1) t f t

More information

TAYLOR S POLYNOMIAL APPROXIMATION FOR FUNCTIONS

TAYLOR S POLYNOMIAL APPROXIMATION FOR FUNCTIONS MISN-0-4 TAYLOR S POLYNOMIAL APPROXIMATION FOR FUNCTIONS f(x ± ) = f(x) ± f ' (x) + f '' (x) 2 ±... 1! 2! = 1.000 ± 0.100 + 0.005 ±... TAYLOR S POLYNOMIAL APPROXIMATION FOR FUNCTIONS by Peter Signell 1.

More information

f(x + h) f(x) f (x) = lim

f(x + h) f(x) f (x) = lim Introuction 4.3 Some Very Basic Differentiation Formulas If a ifferentiable function f is quite simple, ten it is possible to fin f by using te efinition of erivative irectly: f () 0 f( + ) f() However,

More information

3.2 Differentiability

3.2 Differentiability Section 3 Differentiability 09 3 Differentiability What you will learn about How f (a) Might Fail to Eist Differentiability Implies Local Linearity Numerical Derivatives on a Calculator Differentiability

More information

Integration Review. May 11, 2013

Integration Review. May 11, 2013 Integration Review May 11, 2013 Goals: Review the funamental theorem of calculus. Review u-substitution. Review integration by parts. Do lots of integration eamples. 1 Funamental Theorem of Calculus In

More information

Optimization of Geometries by Energy Minimization

Optimization of Geometries by Energy Minimization Optimization of Geometries by Energy Minimization by Tracy P. Hamilton Department of Chemistry University of Alabama at Birmingham Birmingham, AL 3594-140 hamilton@uab.eu Copyright Tracy P. Hamilton, 1997.

More information

Chapter 6: Integration: partial fractions and improper integrals

Chapter 6: Integration: partial fractions and improper integrals Chapter 6: Integration: partial fractions an improper integrals Course S3, 006 07 April 5, 007 These are just summaries of the lecture notes, an few etails are inclue. Most of what we inclue here is to

More information

Entanglement is not very useful for estimating multiple phases

Entanglement is not very useful for estimating multiple phases PHYSICAL REVIEW A 70, 032310 (2004) Entanglement is not very useful for estimating multiple phases Manuel A. Ballester* Department of Mathematics, University of Utrecht, Box 80010, 3508 TA Utrecht, The

More information

Solutions to Math 41 Second Exam November 4, 2010

Solutions to Math 41 Second Exam November 4, 2010 Solutions to Math 41 Secon Exam November 4, 2010 1. (13 points) Differentiate, using the metho of your choice. (a) p(t) = ln(sec t + tan t) + log 2 (2 + t) (4 points) Using the rule for the erivative of

More information

Two formulas for the Euler ϕ-function

Two formulas for the Euler ϕ-function Two formulas for the Euler ϕ-function Robert Frieman A multiplication formula for ϕ(n) The first formula we want to prove is the following: Theorem 1. If n 1 an n 2 are relatively prime positive integers,

More information

Chapter 6: Energy-Momentum Tensors

Chapter 6: Energy-Momentum Tensors 49 Chapter 6: Energy-Momentum Tensors This chapter outlines the general theory of energy an momentum conservation in terms of energy-momentum tensors, then applies these ieas to the case of Bohm's moel.

More information

A Sketch of Menshikov s Theorem

A Sketch of Menshikov s Theorem A Sketch of Menshikov s Theorem Thomas Bao March 14, 2010 Abstract Let Λ be an infinite, locally finite oriente multi-graph with C Λ finite an strongly connecte, an let p

More information

PDE Notes, Lecture #11

PDE Notes, Lecture #11 PDE Notes, Lecture # from Professor Jalal Shatah s Lectures Febuary 9th, 2009 Sobolev Spaces Recall that for u L loc we can efine the weak erivative Du by Du, φ := udφ φ C0 If v L loc such that Du, φ =

More information

Computing with Words: Towards a New Tuple-Based Formalization

Computing with Words: Towards a New Tuple-Based Formalization Computing with Words: Towards a New Tuple-Based Formalization Olga Kosheleva, Vladik Kreinovich, Ariel Garcia, Felipe Jovel, Luis A. Torres Escobedo University of Teas at El Paso 500 W. University El Paso,

More information

THE MONIC INTEGER TRANSFINITE DIAMETER

THE MONIC INTEGER TRANSFINITE DIAMETER MATHEMATICS OF COMPUTATION Volume 00, Number 0, Pages 000 000 S 005-578(XX)0000-0 THE MONIC INTEGER TRANSFINITE DIAMETER K. G. HARE AND C. J. SMYTH ABSTRACT. We stuy the problem of fining nonconstant monic

More information

Construction of the Electronic Radial Wave Functions and Probability Distributions of Hydrogen-like Systems

Construction of the Electronic Radial Wave Functions and Probability Distributions of Hydrogen-like Systems Construction of the Electronic Raial Wave Functions an Probability Distributions of Hyrogen-like Systems Thomas S. Kuntzleman, Department of Chemistry Spring Arbor University, Spring Arbor MI 498 tkuntzle@arbor.eu

More information