OPTIMIZATION _Lecture1_
OPTIMIZATION _Lecture1_
Techniques
[AcSIR-01-ES-AD-009]
Presented by:
Dr. R. S. Bisht, Pr. Scientist,
Lecture-1 [email protected]
CSIR-CBRI, Roorkee, India
Contents
Optimization
techniques
Classical (Gradient
Stochastic method, Hessian method,
Newton’s method)
Meta-
Heuristics heuristics
(PSO)
Classification
Classical
Toutouh, Jamal. "Natural computing for vehicular networks." PhD thesis (2016).
Ahsan, R., Shahzad, W. and Baig, A.R., 2011, December. Trends and challenges in dynamic optimization problems. In 2011 11th International
Conference on Hybrid Intelligent Systems (HIS) (pp. 283-288). IEEE.
Kumar, A. and Bawa, S., 2020. A comparative review of meta-heuristic approaches to optimize the SLA violation
costs for dynamic execution of cloud services. Soft Computing, 24(6), pp.3909-3922.
Classical optimization
Note: The theory cannot make distinction between local and global extrema.
Example-1
Analyze the extrema of 𝑓(𝑥) = 5𝑥6 − 36𝑥5 + 165 /2 𝑥4 − 60𝑥3 + 36 in the interval in the
interval −1 ≤ 𝑥 ≤ 4
MATLAB
Note: The theory cannot make distinction between local and global extrema.
Proof: This can be shown using Taylor’s theorem,
Otto Hesse
(1811-1874),
Wikipedia
Definition:
Minima: A matrix is positive definite if all eigenvalues are positive.
This means that |J − 𝜆 𝐼| = 0
[X,Y] = meshgrid(0:0.5:20);
Z = sin(X) + cos(Y);
surf(X,Y,Z)
Problem-1
https://www.math.csi.cuny.edu/Computing/matlab/Tutorial/
Problem-2