9 Pages

hmwk_5_2010_solutions

Course: CE 30125, Fall 2010
School: Notre Dame
Rating:
 
 
 
 
 

Word Count: 1462

Document Preview

30125 CE Computational Methods: Assignment 5 December 8, 2010 Problem 1 A fourth order accurate central approximation to the second derivative (p=2, n=4) requires p + n - 1 = 2 + 4 - 1 = 6 - 1 = 5 nodes. The second central derivative can therefore be approximate to O(h4 ) as: (2) fi E = 1 fi2 + 2 fi1 + 3 fi + 4 fi+1 + 5 fi+2 h2 T.S. expansions about xi are: (1) fi2 = fi 2hfi (2) + 2h2 fi (1) + (1) +...

Register Now

Unformatted Document Excerpt

Coursehero >> Indiana >> Notre Dame >> CE 30125

Course Hero has millions of student submitted documents similar to the one
below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.

Course Hero has millions of student submitted documents similar to the one below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.
30125 CE Computational Methods: Assignment 5 December 8, 2010 Problem 1 A fourth order accurate central approximation to the second derivative (p=2, n=4) requires p + n - 1 = 2 + 4 - 1 = 6 - 1 = 5 nodes. The second central derivative can therefore be approximate to O(h4 ) as: (2) fi E = 1 fi2 + 2 fi1 + 3 fi + 4 fi+1 + 5 fi+2 h2 T.S. expansions about xi are: (1) fi2 = fi 2hfi (2) + 2h2 fi (1) + (1) + fi1 = fi hfi fi+1 = fi + hfi (1) fi+2 = fi + 2hfi 4h3 (3) 2h4 (4) 4h5 (5) 4h6 (6) f+ f f+ f + O(h7 ) 3i 3i 15 i 45 i h2 (2) h3 (3) h4 (4) h5 (5) h6 (6) fi fi + fi fi + f + O(h7 ) 2 6 24 120 720 i fi = fi h2 (2) h3 (3) h4 (4) h5 (5) h6 (6) fi + fi + fi + fi + f + O(h7 ) 2 6 24 120 720 i (2) + 2h2 fi + 4h3 (3) 2h4 (4) 4h5 (5) 4h6 (6) f+ f+ f+ f + O(h7 ) 3i 3i 15 i 45 i Substituting into our assumed form of fi (2) and re-arranging: (2) fi E = 1 fi2 + 2 fi1 3 fi + 4 fi+1 + 5 fi+2 h2 (1 + 2 + 3 + 4 + 5 ) (21 2 + 4 + 25 ) (1) 2 4 (2) fi + fi + (21 + + + 25 )fi 2 h h 2 2 41 2 4 45 21 2 4 25 2 (4) 41 2 4 45 3 (5) (3) +( + + )hfi + ( + + + )h fi + ( + + )h fi 3 6 6 3 3 24 24 3 15 120 120 15 41 2 4 45 4 (6) +( + + + ) h fi 45 720 720 45 = We want fi (2) and 4th order accuracy, so we note that the coecients must satisfy the following equalities: 1 + 2 + 3 + 4 + 5 = 0 21 2 + 4 + 25 = 0 2 4 21 + + + 25 = 1 2 2 41 2 4 45 + + =0 3 6 6 3 21 2 4 25 + + + =0 3 24 24 3 1 We can then write this system of equations in matrix form AX = B 0 1 1 1 1 1 1 2 1 0 1 2 2 0 2 0.5 0 0.5 2 3 = 1 1.33333 0.16667 0 0.16667 1.33333 4 0 0 5 0.66667 0.041667 0 0.041667 0.66667 1 Solving this equation in Matlab (see asgn5 prob1.m) yields 1 = - 12 , 2 = 4 , 3 = - 5 , 4 = 4 , and 3 2 3 1 5 = - 12 . The equation for our fourth order accurate central approximation to the second derivative now becomes 1 (6) (1) (2) (3) (4) (5) )f + O(h5 ) = (0)fi + (0)fi + (1)fi + (0)fi + (0)fi + (0)fi + ( 90 i The fourth order accurate central approximation to the second derivative is as follows: fi2 + 16fi1 30fi + 16fi+1 fi+2 +E 12h2 where 1 4 (6) E h fi = 90 2 Problem 2 For the third derivative p = 3 and we must use our N+1 = 4 nodes to establish an interpolating polynomial of degree N 3. We let the four points be x0 = 0, x1 = h, x2 = 2h, and x3 = 3h. Using Newton forward interpolation, we then establish the following interpolating polynomial: g ( x) = f0 + 3 f0 2 f0 f0 (x x0 )(x x1 ) + (x x0 )(x x1 )(x x2 ) (x x0 ) + 2 h 2h 6h3 with the following associated error term: e(x) = f (3) ( ) 4 f0 (x x0 )(x x1 )(x x2 )(x x3 ) (x x0 )(x x1 )(x x2 )(x x3 ) = 24 24h4 where f0 = f1 f0 2 f0 = f2 2f1 + f0 3 f0 = f3 3f2 + 3f1 f0 Since we are looking for the third derivatives of the interpolating function and the error term, we note that these terms dierentiate to zero, and simply focus in on the third and fourth order terms. Dierentiating these terms yields: g (1) (x) = 3 f0 3 f0 3 f 0 (x x1 )(x x2 ) + (x x0 )(x x2 ) + (x x0 )(x x1 ) 3 3 6h 6h 6h3 with the following associated error term: e(1) (x) = f (3) ( ) f (3) ( ) (x x1 )(x x2 )(x x3 ) + (x x0 )(x x2 )(x x3 ) 24 24 f (3) ( ) f (3) ( ) (x x0 )(x x1 )(x x3 ) + (x x0 )(x x1 )(x x2 ) 24 24 Dierenting a second time yields: + g (2) (x) = 3 f 0 3 f0 3 f 0 (x x1 ) + ( x x2 ) + (x x0 ) 6h3 6h3 6h3 3 f0 3 f 0 3 f0 ( x x2 ) + (x x0 ) + ( x x1 ) 3 3 6h 6h 6h3 with the following associated error term: + e(2) (x) = f (3) ( ) f (3) ( ) f (3) ( ) (x x2 )(x x3 ) + (x x1 )(x x3 ) + (x x1 )(x x2 ) 24 24 24 + f (3) ( ) f (3) ( ) f (3) ( ) (x x2 )(x x3 ) + (x x0 )(x x3 ) + (x x0 )(x x2 ) 24 24 24 + f (3) ( ) f (3) ( ) f (3) ( ) (x x1 )(x x3 ) + (x x0 )(x x3 ) + (x x0 )(x x1 ) 24 24 24 f (3) ( ) f (3) ( ) f (3) ( ) (x x1 )(x x2 ) + (x x0 )(x x2 ) + (x x0 )(x x1 ) 24 24 24 Finally, dierentiating a third time and evaluating at x = x3 gives us the backward approximations to the third derivative and the error associated with the formula. + g (3) (x) = 6 3 f0 f3 3f2 + 3f1 f0 3 f0 = = 3 3 6h h h3 3 Dierentiating the error term one more time leads to e(3) (x) = f (3) ( ) f (3) ( ) f (3) ( ) f (3) ( ) (x x3 ) + (x x2 ) + ( x x3 ) + (x x1 ) 24 24 24 24 + f (3) ( ) f (3) ( ) f (3) ( ) f (3) ( ) (x x2 ) + (x x1 ) + ( x x3 ) + (x x2 ) 24 24 24 24 + f (3) ( ) f (3) ( ) f (3) ( ) f (3) ( ) (x x0 ) + (x x3 ) + ( x x2 ) + (x x0 ) 24 24 24 24 + f (3) ( ) f (3) ( ) f (3) ( ) f (3) ( ) (x x3 ) + (x x1 ) + ( x x3 ) + (x x0 ) 24 24 24 24 + f (3) ( ) f (3) ( ) f (3) ( ) f (3) ( ) (x x1 ) + (x x0 ) + ( x x2 ) + (x x1 ) 24 24 24 24 f (3) ( ) f (3) ( ) f (3) ( ) f (3) ( ) (x x2 ) + (x x0 ) + ( x x1 ) + (x x0 ) 24 24 24 24 The error term simplies to the following: + e(3) = f (x) (3) ( ) f (3) ( ) f (3) ( ) f (3) ( ) (x x0 ) + (x x1 ) + ( x x2 ) + (x x3 ) 4 4 4 4 f (3) ( ) [(x x3 ) + (x x2 ) + (x x1 ) + (x x0 )] 4 We then evaluate this at x3 in order to get the error associated with the backward approximation: = e(3) (x3 ) = f (3) ( ) f (3) ( ) 3f (3) ( ) [(0) + (h) + (2h) + (3h)] = [6h] = h 4 4 2 Finally, we re-index so that the node j corresponds with x3 d3 f dx3 = xj fj 3fj 1 + 3fj 2 fj 3 h3 3 (3) E fj h = 2 4 Problem 3 For this problem, we evaluate the approximations for f(4) and veried them using a Python script (see prob 3.py ). (a) 3 (fi ) 3 (fi+1 fi ) 2 (fi+1 fi ) 2 (fi+2 2fi+1 + fi )) (fi+2 2fi+1 + fi )) 4 f i = = = = = 4 4 4 4 h h h h h4 h4 = (fi+3 fi+2 2fi+2 + 2fi+1 + fi+1 fi ) (fi+3 3fi+2 + 3fi+1 fi ) fi+3 3fi+2 + 3fi+1 fi = = h4 h4 h4 fi+4 fi+3 3fi+3 + 3fi+2 + 3fi+2 3fi+1 fi+1 + fi fi+4 4fi+3 + 6fi+2 4fi+1 + fi = = h4 h4 (b) 3 f i 3 (fi fi1 ) 2 (fi fi1 ) 2 (fi+1 2fi + fi1 ) (fi+1 2fi + fi1 ) = = = = 4 4 4 4 h h h h h4 (fi+2 3fi+1 + 3fi fi1 ) (fi+2 3fi+1 + 3fi fi1 ) = 4 h h4 fi+3 fi+2 3fi+2 + 3fi+1 + 3fi+1 3fi fi + fi1 fi+3 4fi+2 + 6fi+1 4fi + fi1 = = h4 h4 = (c) 2 2 fi = h4 2 (fi+1 fi ) = h4 2 (fi+1 fi ) h4 ( fi+2 2 fi+1 + fi ) (fi+2 2fi+1 + fi ) = 4 h h4 fi+2 4fi+1 + 6fi 4fi1 + fi2 (fi+2 3fi+1 + 3fi fi1 ) = 4 h h4 = = 2 5 Problem 4 For this problem we are working with the following function: f (x) = 3x5 4x3 + x 6 which has the following derivatives: f (1) (x) = 15x4 12x2 + 1 f (2) (x) = 60x3 24x f (3) (x) = 180x2 24 (a) The matlab script computes all the values asked for in the homework assignment. The results are shown in Table 1. h 1.0 0.5 0.1 0.05 0.01 f2 60.000000 -6.000000 -5.831040 -5.903970 -5.980032 f1 -6.000000 -5.906250 -5.903970 -5.950499 -5.990004 f0 -6.000000 -6.000000 -6.000000 -6.000000 -6.000000 f0 (1) approx -33.000000 0.375000 1.075800 1.019739 1.000800 Eactual 34.000000 0.625000 -0.075800 -0.019738 -0.000800 E1 -8.000000 -2.000000 -0.080000 -0.020000 -0.00080 Table 1: Functional values, approximations, and errors for problem 4 (b) (i) As can be seen in Figure 1, the estimated error curve has a slope of 2 on the log-log plot, and the actual error curve generally has a slope of 2. The slope of the estimated error makes sense since taking logs of both sides and then rearranging yields the following: 1 1 (3) 1 (3) (3) log(E1 ) = log( h2 f0 ) = log( f0 ) + log(h2 ) = 2 log(h) + log( f0 ) 3 3 3 1 (3) log(E1 ) = 2 log(h) + log( f0 ) 3 Since log(E1 ) is on the y-axis and log(h) is on the x-axis in the plot, this equation is in the form y = mx + b. The slope (m) is 2 which is what we see in the plot. Simply put, we expect a second order accurate formula to result in a straight line with a slope of 2 on the log-log plot. (ii) When we have larger h, we see that the two curves may dier. This is because the leading order truncated error term may not dominate the rest of the Taylor series in this case since the higher order terms may be non-negligible. We would have to inspect the actual functional values, and their derivatives in relation to grid spacing, to understand why the actual error is worse than expected as h approaches 1, but is actually better than expected for some range. Regardless, we see that as h becomes suciently small, the actual error approaches the estimated error since the error term eventually dominates the rest of the series. 6 Figure 1: Error Curves. 7 Figure 2: Molecule for problem 5 part (a). Problem 5 (a) For this problem, we use the fourth-order accurate central dierence approximation to the rst derivative: 1 4 (6) fi+2 + 16fi+1 30fi + 16fi1 fi2 (2) + E, E h fi fi = = 2 12h 90 With this, we have the following partial derivatives with respect to x and y: fi+2,j + 16fi+1,j 30fi,j + 16fi1,j fi2,j 2f = x2 12x2 2f fi,j +2 + 16fi,j +1 30fi,j + 16fi,j 1 fi,j 2 = y 2 12y 2 We then consider Laplaces equation and x = y = h 2 f= 2f 2f +2 x2 y 1 (fi+2,j + 16fi+1,j + 16fi1,j fi2,j fi,j +2 + 16fi,j +1 + 16fi,j 1 fi,j 2 60fi,j ) 12h2 This equation can then be represented by the molecule shown in Figure 2. (b) By simply adjusting the i and j values in the above equation, we can derive the following two approximations: 2 2 fi,j = fi1,j = 1 (fi+1,j +16fi,j +16fi2,j fi3,j fi1,j +2 +16fi1,j +1 +16fi1,j 1 fi1,j 2 60fi1,j ) 12h2 1 (fi+4,j +1 +16fi+3,j +1 +16fi+1,j +1 fi,j +1 fi+2,j +3 +16fi+2,j +2 +16fi+2,j fi+2,j 1 60fi+2,j +1 ) 12h2 These approximations can be represented by the molecules shown in Figure 3. With this, we can see that no nodal values would be shared in both approximations. 2 fi+2,j +1 = 8 Figure 3: Molecule for problem 5 part (b). Red molecule is for 9 2 fi1,j . Blue molecule is for 2 fi+2,j +1 .
Find millions of documents on Course Hero - Study Guides, Lecture Notes, Reference Materials, Practice Exams and more. Course Hero has millions of course specific materials providing students with the best way to expand their education.

Below is a small sample set of documents:

Notre Dame - CE - 30125
UNIVERSITY OF NOTRE DAMEDepartment of Civil Engineeringand Geological SciencesCE 30125J.J. WesterinkNovember 5, 2010Due: November 12, 2010Homework #5Background: Discrete differentiation applies the sums and differences of functional values to esti
Notre Dame - CE - 30125
CE 30125 Computational Methods: Assignment 6KEYCourtesy of Jake T. LussierDecember 9, 2010Problem 1For this problem, we formulate a second order accurate approximation to the following three dimensional partial dierential equation at node (i, j, k ):
Notre Dame - CE - 30125
UNIVERSITY OF NOTRE DAMEDepartment of Civil Engineeringand Geological SciencesCE 30125J.J. WesterinkNovember 18, 2010Due: November 30, 2010Homework Set # 6 Corrections Nov. 23, 2010Background: Partial differentiation in a discrete context is imple
Notre Dame - CE - 30125
KEYProvided courtesy of Jake T. LussierDecember 8, 2010Part 1TimeStepperExplicitExplicitExplicitExplicitImplicitImplicitImplicitImplicitCrankNicolsonCrankNicolsonCrankNicolsonCrankNicolsonUm/s1.01.01.01.01.01.01.01.01.0Dm2 /s
Notre Dame - CE - 30125
UNIVERSITY OF NOTRE DAMEDepartment of Civil Engineeringand Geological SciencesCE 30125J.J. WesterinkNovember 24, 2010Due: November 30, 2010Homework Set # 7 - Group Project 1We will consider a pollutant advecting and diffusing down a river that is
Notre Dame - CE - 30125
CE30125ProjectUpdated13:19Dec52010CE30125COMPUTATIONALMETHODSPROJECT:POLLUTANTTRANSPORTINANIDEALIZEDRIVERTherewillbetwosubmittalsfortheproject:50%SubmittalDue:Dec.5thFinalReportDueDec.9thPleasesubmitonlyonereportperteamandfollowtheoutlineofthedeliv
Notre Dame - CE - 30125
CE 30125 - Lecture 1LECTURE 1INTRODUCTIONFormulating a Mathematical Model versus a Physical Model Formulate the fundamental conservation laws to mathematically describe what is physically occurring. Also define the necessary constitutive relationships
Notre Dame - CE - 30125
CE 30125 - Lecture 3LECTURE 3DIRECT SOLUTIONS TO LINEAR ALGEBRAIC SYSTEMS - CONTINUEDIll-conditioning of Matrices There is no clear cut or precise definition of an ill-conditioned matrix.Effects of ill-conditioning Roundoff error accrues in the calc
Notre Dame - CE - 30125
CE 30125 - Lecture 4LECTURE 4ITERATIVE SOLUTIONS TO LINEAR ALGEBRAIC EQUATIONS As finer discretizations are being applied with Finite Difference and Finite Elementcodes: Matrices are becoming increasingly larger Density of matrices is becoming incre
Notre Dame - CE - 30125
CE 30125 - Lecture 5LECTURE 5INTRODUCTION TO INTERPOLATION Interpolation function: a function that passes exactly through a set of data points. Interpolating functions to interpolate values in tablesxsin(x)0.00.0000000.50.4794261.00.8414711.5
Notre Dame - CE - 30125
CE 30125 - Lecture 6LECTURE 6LAGRANGE INTERPOLATIONth Fit N + 1 points with an N degree polynomialg(x)f2f0x0f1f3x1 x2 x3f4x4 .f(x)fNxN f x = exact function of which only N + 1 discrete values are known and used to establish an interpolati
Notre Dame - CE - 30125
CE 30125 - Lecture 7LECTURE 7NEWTON FORWARD INTERPOLATION ON EQUISPACED POINTS Lagrange Interpolation has a number of disadvantages The amount of computation required is large Interpolation for additional values of x requires the same amount of effor
Notre Dame - CE - 30125
CE 30125 - Lecture 8LECTURE 8INTERPOLATION USING CHEBYSHEV ROOTS For both Lagrange and Newton interpolation through N + 1 data points ( N th degree polynomial which fits through all N + 1 data points).( x x o ) ( x x 1 ) ( x x 2 ) ( x x N ) ( N + 1 )
Notre Dame - CE - 30125
CE 30125 - Lecture 9LECTURE 9HERMITE INTERPOLATING POLYNOMIALS So far we have considered Lagrange Interpolation schemes which fit an Npolynomial to N + 1 data or interpolation pointsf0x0xNx2x1degreefNf2f1thx All these Lagrange Interpolatio
Notre Dame - CE - 30125
CE 30125 - Lecture 9LECTURE 9HERMITE INTERPOLATING POLYNOMIALS So far we have considered Lagrange Interpolation schemes which fit an Npolynomial to N + 1 data or interpolation pointsf0x0xNx2x1degreefNf2f1thx All these Lagrange Interpolatio
Notre Dame - CE - 30125
CE 30125 - Lecture 10LECTURE 10SOLVING FOR ROOTS OF NONLINEAR EQUATIONS Consider the equationfx = 0 Roots of equation f x are the values of x which satisfy the above expression. Alsoreferred to as the zeros of an equationf(x)xx2x1x3x4roots of
Notre Dame - CE - 30125
CE 30125 - Lecture 11LECTURE 11NUMERICAL DIFFERENTIATION To find discrete approximations to differentiation (since computers can only deal withfunctional values at discrete points) Uses of numerical differentiation To represent the terms in o.d.e.s
Notre Dame - CE - 30125
CE 30125 - Lecture 12LECTURE 12DERIVATION OF DIFFERENCE APPROXIMATIONS USING UNDETERMINEDCOEFFICIENTS All discrete approximations to derivatives are linear combinations of functional valuesat the nodes(p)fia f + a f + + a f= - + Eph The total
Notre Dame - CE - 30125
CE 30125 - Lecture 13LECTURE 13NUMERICAL DIFFERENTIATION FORMULAE BY INTERPOLATING POLYNOMIALSRelationship Between Polynomials and Finite Difference Derivative Approximations We noted that Nth degree accurate Finite Difference (FD) expressions for fir
Notre Dame - CE - 30125
CE 30125 - Lecture 14LECTURE 14PRACTICAL ISSUES IN APPLYING FINITE DIFFERENCE APPROXIMATIONSDerivatives of Variable Coefficients Consider the termddf x - g x -dx dx where g is a coefficient which is a function of x Proceed in steps. First let:
Notre Dame - CE - 30125
CE 30125 - Lecture 15LECTURE 15APPLICATIONS OF FD APPROXIMATIONS FOR SOLVING ORDINARYDIFFERENTIAL EQUATIONSOrdinary Differential EquationsInitial Value Problems For Initial Value problems (IVPs), conditions are specified at only one value of theind
Notre Dame - CE - 30125
CE 30125 - Lecture 16LECTURE 16NUMERICAL SOLUTION OF THE TRANSIENT DIFFUSION EQUATION USING THE FINITE DIFFERENCE (FD) METHOD Solve the p.d.e.2uu- = D -2tx Initial conditions (i.c.s)u ( x, t = t o ) = u * o ( x ) Boundary conditions (b.c.s)u
Notre Dame - CE - 30125
CE 30125 - Lecture 17LECTURE 17NUMERICAL INTEGRATION FindbI= f x dxaorbI=vxaf x y dy dxux Often integration is required. However the form of f x may be such that analyticalintegration would be very difficult or impossible. Use numerical in
Notre Dame - CE - 30125
CE 30125 - Lecture 18LECTURE 18NUMERICAL INTEGRATION CONTINUEDSimpsons 1/3 Rule Simpsons 1/3 rule assumes 3 equispaced data/interpolation/integration points The integration rule is based on approximating f x using Lagrange quadratic (seconddegree) i
Notre Dame - CE - 30125
CE 30125 - Lecture 19LECTURE 19GAUSS QUADRATURE In general for Newton-Cotes (equispaced interpolation points/ data points/ integrationpoints/ nodes).xE f x dx= h wo' f o + w' f 1 + + wN f N + E'1xS84fNf0f1x1xs = x0f2x2closed formulaxE
Notre Dame - CE - 30125
CE 30125 - Lecture 20LECTURE 20SOLUTION TO SINGLE 1ST ORDER INITIAL VALUE PROBLEMS (IVPs) Solvedy- = f y t dti.c. y t o = y o Consider two classes of methods: Runge-Kutta type formulae single step methods very simple to program self starting (
Notre Dame - CE - 30125
CE 30125 - Lecture 21LECTURE 21SOLUTIONS TO O.D.E.S Continued Solvedy- = f ( y, t )dty ( to ) = yoInitial condition Note that the solution y ( t ) is a function of t only while the slope f ( y, t ) is a function ofboth y and t .INSERT FIGURE NO
Notre Dame - CE - 30125
CE 30125 - Lecture 22LECTURE 22MULTI STEP METHODS Solve the i.v.p.dy- = f y t dty to = yo Multi step methods use information from several previous or known time levelsINSERT FIGURE NO. 100yy1y2y3y4y0t0t1t2t3p. 22.1t4tCE 30125 - Lect
Notre Dame - CE - 30125
CE 30125 - Review 1REVIEW NO. 1TAYLOR SERIES Find f x away from x = a given f a and the derivatives of f x evaluated at x = adff x = f a + x a -dx22x a d f+ - -2! dx 2x=annx a d f-+ + - -n! dx n33x=ax a d f+ - -3! dx 344x=an+1x=a1n+1
Notre Dame - CE - 30125
CE 30125 - Review 1REVIEW NO. 1TAYLOR SERIES Find f x away from x = a given f a and the derivatives of f x evaluated at x = adff x = f a + x a -dx22x a d f+ - -2! dx 2x=annx a d f-+ + - -n! dx n33x=ax a d f+ - -3! dx 344x=an+1x=a1n+1
Notre Dame - CE - 30125
CE 30125 - Review 2REVIEW NO. 2NUMERICAL DIFFERENTIATION Find a discrete approximation to differentiation Use numerical differentiation to solve o.d.e.s and p.d.e.s on a computer Recall that a computer doesnt do differential/integral mathematics and
Notre Dame - CE - 30125
CE 30125 - Review 2REVIEW NO. 2NUMERICAL DIFFERENTIATION Find a discrete approximation to differentiation Use numerical differentiation to solve o.d.e.s and p.d.e.s on a computer Recall that a computer doesnt do differential/integral mathematics and
Notre Dame - CE - 30125
CE 30125 - Review 3REVIEW NO. 3O.D.E. CLASSIFICATION I.V.P.sd2 ydyA - + B - + Cy = g t dtdt 2y 0 = yody- 0 = V odtd2ydyA - + B - + Cy = g x dxdx 2y 0 = yoy L = yL B.V.P.sst Can always decompose an nth order i.v.p. into n simultaneous
Notre Dame - CE - 30125
CE 30125:2008 TEST 1 SOLUTIONS1Problem 1Solve the system of equations using a fast iterative solution method.235 492x18 4 x2 = 632x37Rearranging the matrix to make it diagonally dominant yields the following system: 2942x34 8 3 x2 = 6
Notre Dame - CE - 30125
Notre Dame - CE - 30125
UNIVERSITY OF NOTRE DAMEDepartment of Civil Engineeringand Geological SciencesCE 30125 Computational MethodsJ.J. WesterinkFall 2008/2009SAMPLE Test 1NAME _This exam is being conducted under the HONOR CODE. Please sign your exam to indicate that yo
Notre Dame - CE - 30125
2008 TEST 2 SOLUTIONSDecember 5, 2008Problem 1:Derive the rst order accurate backward dierence approximation to the third derivative at node j. Useinterpolating polynomials to derive your resultOPTION 1: Newton forward methodThe number of nodes need
Notre Dame - CE - 30125
Notre Dame - CE - 30125
UNIVERSITY OF NOTRE DAMEDepartment of Civil Engineeringand Geological SciencesCE 30125 Computational MethodsJ.J. WesterinkDecember 4, 2008Test 2NAME _This exam is being conducted under the HONOR CODE. Please sign your exam to indicate that you agr
Notre Dame - ENGL - 20118
Cinderella Short Stories: Question Sheet 1Due: Wed Jan 23Fairy tales are often considered childrens literature because they have didactic (teaching)properties, and often include some kind of moral lesson. What do you think is the moral of:Yeh-hsien? -
Notre Dame - ENGL - 20118
Cinderella and Feminism: Question Sheet 2Due: Wed Jan 30Marcia Lieberman claims that for women, the system of rewards equates these three factors:being beautiful, being chosen, and getting rich. Can you think of any specific exceptions to anypart of t
Notre Dame - ENGL - 20118
Cinderella and Feminist Theory: Question Sheet 4Due: Mon Feb 11In the beginning of her article, Bell describes the hidden role of the women who worked for theearly Disney corporation. How does she describe the roles that they played?At the end of the
Notre Dame - ENGL - 20118
Q&A Sheet 5: The Arabian Nights and Shadow SpinnerThe second epigraph to Madisons Pretty Woman through the Triple Lens of Black FeministSpectatorship is a quote by Valerie Smith: Black women are employed, if not sacrificed, to humanizetheir white super
Notre Dame - ENGL - 20118
Beauties and Beasts: Question Sheet 6Due: Wed 12 MarRoses are an important image for all 20c. retellings of the Beauty and the Beast story. List threeinstances of the roses appearance in Donoghues story. Who or what does the rose symbolize?What is bea
Notre Dame - ENGL - 20118
Beauties and Beasts: Question Sheet 7Due: Mon 17 MarThe Pilcher and Whelehan article is a basic overview of queer theory, and I know that it willrefer to people and concepts that you may not have come across before. Without worrying toomuch about the
Notre Dame - ENGL - 20118
Beast in search of Beauty: Q&A Sheet 8Due Mon Mar 24Orasmyn frequently talks about veils and the womans body, but the cover image suggests thatin this story its the male body that is being veiled. Women find the burka both liberating andrestrictive. W
Notre Dame - ENGL - 20118
Storytelling, Again: Q&A Sheet 9Due Mon Mar 31What is the difference between the role of a fairy tale reader and an audience member at astorytelling performance?How might the demographic of an audience affect your perception of the storytelling proces
Notre Dame - ENGL - 20118
Pied Pipers, Rats, and Trailer Parks: Q&A Sheet 10Due Mon Apr 7Answer one of the two:1. Robert Brownings poem (1842) is obviously much easier to read than Olga Broumas beastlywork, but the rollicking rhythm and rhyme patterns are just as important for
Notre Dame - ENGL - 20118
What is a Fairy Tale? REVIEW: Q&A Sheet 11Due Mon Apr 21Rummage back through your notes and find four different definitions of the fairy tale. (You canonly use one dictionary, and it only counts for one definition, even if it has different parts.) Tell
Notre Dame - ENGL - 20118
Tips for writing your essayAs you are thinking about a thesis:A good thesis always starts with a good question. A question is good for essay purposes if itmeets the following criteria:1. Its manageable for the amount of space youve got to write in. (F
Notre Dame - ENGL - 20118
1. Argument (relating to quality of thesis, support, evidence, framing)2. Organization (relating to structure, coherence)3. Stylistics (relating to tone, choice of adjectives, fluidity in incorporating outside sources)4. Mechanics (the nitty gritty of
Notre Dame - ENGL - 20118
Introduction II: Potted History of the Fairy TaleFairy Tales from Around the WorldThe Literary Fairy Tale in EuropeItaly:Giovan Straparola (1480-1558)Giambattista Basile (1575-1632)France:Madame dAulnoy (1650-1705)Charles Perrault (1628-1703)[Ris
Notre Dame - ENGL - 20118
OED: Feminism: 1. The qualities of females.2. [After F. fminisme.] Advocacy of the rights of women (based on the theory of equality of thesexes).(term coined in the 19c.)Proto-Feminism (pre-19c.): Concerned primarily with questions of womens morality
Notre Dame - PHIL - 10100
Philosophy 101: IntroductionTo PhilosophySpring 2005Professor RamseyCourse ObjectivesIntroduction to Central Themes Repository For Unanswered Questions Is There A God? What Makes An Action Right? Do We Have Free Will? How Do We Know What Is Real
Notre Dame - PHIL - 10100
Philosophical MethodLogic: A Calculus For Good ReasonClarification, Not Obfuscation Distinctions and DisambiguationExamples and Counterexamples Revealing Our Deepest Convictions Testing Our Principles and DefinitionsLogic: Primary PhilosophicalToo
Notre Dame - PHIL - 10100
PHILOSOPHY OFRELIGIONPreliminary Issues: Agreement vs. Tolerance Different Religions ARE Incompatible Religious Claims Arent True FOR Individuals Reason and Faith Unusual Standards For Belief Recent Trends Go Against Western Tradition Classic Tri
Notre Dame - PHIL - 10100
Objections And RepliesGaunilos Objection: Argument TooStrong Proving The Existence Of The Perfect Island First Reply: Argument Concerns OnlyThings In General (Not Any Specific Thing) Second Reply: Fully Perfect Island NotPossible But What About A
Notre Dame - PHIL - 10100
The Cosmological ArgumentAquinas: 1225-1274; Clarke: 1675-1729Background Sources Of Explanation: Three Options: Explained By a) Other, b) Nothing, c) Self Principle of Sufficient Reason Individual Things & Events Need AnExplanation Positive Facts
Notre Dame - PHIL - 10100
The Teleological Argument Aquinas, Paley (1743-1805)The Argument: Two Ways To View It:First Way: Argument By Analogy 1. Aspects Of Natural World Are LikeMachines 2. Machines Are Produced By IntelligentDesign 3. Therefore, Aspects Of Natural World
Notre Dame - PHIL - 10100
Theodicy And The Problem OfEvilThe Argument Against Western Theism:Reason To Doubt That A Christian GodExists1. Christianity Assumes God Is Omniscient,Omnipotent, Perfectly Good, And Loves Us2. Massive Evil Exists Moral Evil (Suffering Caused By U
Notre Dame - PHIL - 10100
Responses To The ArgumentAnd RebuttalsFirst Response: Challenge (2, 5) Denies Suffering Is Real Rebuttals: Makes God A Deceiver Hard To Take SeriouslySecond Response: Challenge Premise (3)In Many WaysChallenging InconsistencyBetween God And Evil