functions , Numerical Methods & Approximations Flashcards

(22 cards)

1
Q

What is an even and odd function

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

create a linear approximation of a function f(x) around a specific point (x0) with 1 variable

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

what is the linear approximation of X^2 at (1,1)

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Explain why exact integration methods are not typically used within industry

eg.
substitution
partial fractions
by parts

A

They are difficult to replicated within software

Not a general method, code is required for every different method.

Function may be too complicated to be integrated analytically

Function may not be integrated analytically

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the formula for the rectangular rule approximation

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Using the rectangular rule find an approximate solution to the following problems:

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is the formula for the Trapezoid rule approximation

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Using the trapezoid rule find an approximate solution to the following problems:

Compare your answer to the exact result

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

what is the formula for the Simpson rule (composite) approximation for a composite with 4 sub-intervals

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

what is the general formula for the Simpson rule (composite) approximation

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Using simpsons rule find an approximate solution to the following problems:

Compare your answer to the exact result

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

why does Simpsons rule result in an exact answer when the equation is quadratic?

A

Simpsons rule assumes the function can be approximated by a second degree polynomial.

Weights of 1,4,1 perfectly account for the contributions of even and odd intervals.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Explain which situations the rectangular rule is best for, comment on its accuracy.

A

Simple approximations

Constant/linear functions

Quick and rough estimations

Minimal computational effort

Low accuracy

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Explain which situations the trapezoid rule is best for, comment on its accuracy.

A

simple approximations

Linear/constant functions

more but still minimal computational effort then rectangular rule

More accurate then rectangular rule

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Explain which situations the Simpsons rule is best for, comment on its accuracy.

A

approximation for smooth curves

Functions that can be approximated well by parabolas

High accuracy for smooth curves and quadratic like behaviour

More computational effort needed.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Explain which numerical method would you use to approximate the integral of a stress strain curve

A

Rectangular rule.

Curve is smooth but wont be approximated well by parabolas.

Non-linear regions which can cause the trapezoid to over or under estimate

17
Q

create a linear approximation of a function f(x) around a specific point (x0) with 2 variables

18
Q

find a linear approximation of F(x,y) = X^2 + y^2 at (1,1,2)

19
Q

Derive the newton raphson method of root aproximation

What important things must you remmeber while using it?

A

The initial guess must be sufficiently close to the actual root to converge-> might diverge, converge to a different root or get stuck in a cycle

20
Q

Find the relationship between vector F in the x’-y’ and x-y co
ordinate systems. What is the 2D Coordinate transformation matrix?