Unit 5 Flashcards

1
Q

What are the table headers for the Newton updating formula (L->R)?

A
Iteration
x(t)
F(x(t))
F’(x(t))
h(t)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How do you know when you have reached the value where F(x)=0 when doing newton updating formula?

A

When x and F’(x) converge to values, and F(x) and h converge to 0

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

What was the rosenbrock test function?

A

It was a function designed to test the performance of optimisation algorithms

f(x1,x2)=M(x2-x1^2)+(1-x1)^2 M=1000

UGMin at (1,1)

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

Explain the first difficulty with numerical unconstrained optimisation?

A

No guarantee with the NR algorithm that f(x(t+1)) will actually be smaller than f(x(t)). HOWEVER can be sure that the search direction is an improvement direction provided H(x(t)) is positive definite (see notes)

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

Explain the second difficulty with numerical unconstrained optimisation?

A

Hessian matrix may be laborious to compute - so called quasi-Newton algorithms get round this problem (see notes)

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