SlideShare a Scribd company logo
MATHEMATICAL OPTIMISATION
AN INTRODUCTION TO THE INDUSTRIAL APPICATIONS OF
KNOWN AS
NON-LINEAR PROGRAMMING
OR NUMERICAL OPTIMISATION
OVERVIEW
INTRODUCTION
MATHEMATICAL OPTIMISATION IN THE REAL WORLD
• Manufacturing
• Production
• Inventory Control
• Transportation
• Scheduling
• Networks
• Finance
• Control Engineering
• Marketing
• Policy Modelling
A NARRATIVE
MATHEMATICAL OPTIMISATION IN THE REAL WORLD
• Optimising time in the production
cycle of an industry, optimising tax in
a tax return, optimising length in a
tour are mathematical optimisation
problems we encounter in our daily
life.
• A solution that satisfying all the
constraints is called a feasible
solution
• The set of all solutions, satisfying all
the constraints is called the feasible
region
A SNAPSHOT
HISTORY
• 1940s
• Linear Programming
• 1950s
• Quadratic Programming
• 1960s
• Geometric Programming
• 1990s
• Semidefinite Programming
• Quadratically Constrained Quadratic Programming
• Robust Optimizaton
• Sum of Squares Programming
A QUICK SURVEY
NEW APPLICATIONS SINCE 1990
• Linear matrix inequality techniques in control
• Circuit design via geometric programming
• Support vector machine learning via
quadratic programming
• Semidefinite programming relaxations in
combinatorial optimisation
• L1- norm optimisation for sparse signal
reconstruction
• Applications in quantum information theory,
computer vision, image processing, finance
MATHEMATICAL OPTIMISATION
MANY OTHER KINDS …
• Linear Network Optimization
• Specialization of LP to problems with
graph structure ( shortest path,
transportation, trans-shipment, etc.)
• Integer Programming
• Decision variables are allowed only
integer values
• Combinatorial optimisation
• Decision variables have nice
combinatorial structures ( e.g. trees,
permutations, matchings )
DEEPER INSIGHTS
MATHEMATICAL OPTIMISATION : SPECIAL CASES
• Optimal solution need not be unique
• One of the special case is when
variables have symmetry.
• In this case, some kind of
permutation can be applied to get
multiple optimal solution
MATHEMATICAL OPTIMISATION
ESSENTIAL NOTIONS
• Design Variables
• Objective Functions
• Inequality constraint functions
• Equality constraint functions
• Optimum Vector
WHAT IS
MATHEMATICAL
OPTIMISATION
FORMALLY, MATHEMATICAL
OPTIMISATION IS THE PROCESS OF
FORMULATION AND SOLUTION OF
A CONSTRAINED OPTIMISATION PROBLEM
OF THE GENERAL MATHEMATICAL FORM:
MINIMIZE F(X), X = [X1, X2, X3, …. ] T E R N
SUBJECT TO THE CONSTRAINTS
G(X) < 0 , J = 1, 2, … , M
H(X) = 0 , J = 1, 2, …, R
WHERE F(X), G(X), AND H(X) ARE SCALAR
FUNCTIONS OF THE REAL COLUMN VECTOR
X.
MATHEMATICAL OPTIMISATION
OBJECTIVE AND CONSTRAINT FUNCTIONS
• The values of the functions f(x), g(x),
and h(x) at any point x = [x1, x2,
…xn] may in practice be obtained in
different ways
• From analytically known formulae
• as the outcome of some
computational process, g(x) = a(x)
- amax
• From measurement taken from a
physical process, e.g. h1(x) = T(x)
- T0
INTRODUCTION
MATHEMATICAL OPTIMISATION : PROBLEM TYPES
• Limited or Unlimited
• One variable or Many variables
• Discrete Variable or Continuous
Variables
• Static Problems or Dynamic
Problems
• Deterministic or Stochastic Problems
• Linear Equations or Nonlinear
Equations
MATHEMATICAL OPTIMISATION
SENSITIVITY AND ROBUSTNESS
• Every model we write is only a coarse
description of reality
• Conclusions about the model may
more may not correspond to actual
behaviour
• Validity of models often informal,
implicit
• These considerations sometimes
incorporated through sensitivity
analysis
MATHEMATICAL OPTIMISATION
SENSITIVITY AND ROBUSTNESS
• More recently, better techniques to
explicit account of difference between
real world and model ( robust control,
robust optimisation )
• Constraints and / or objective
known only approximately
• Implemented solution different
from the computed one
MODEL CLASSIFICATIONS
MATHEMATICAL OPTIMISATION
• Unconstrained Optimisation
• Linear Optimisation
• Linear Constrained Optimisation :
• If the constraint functions are linear / affine
• Conic Linear Optimisation :
• If both the objective and the constraint functions
are linear / affine but variables in a convex cone
• Quadratically constrained Quadratic Optimisation :
• If both the objective and constraint functions
are quadratic
MATHEMATICAL OPTIMISATION
GLOBAL OPTIMISATION
• Consider unconstrained optimisation
• Typically extremely difficult, many
local minima
• Many questions can be posed in
these terms ( protein folding )
• Very flexible formulation
• But hard to do anything substantial
with it
• Complexity theoretic obstacles
BASIC OVERVIEW
CONVEX OPTIMISATION
• Convex optimisation is a generation
of linear programming where the
constraints and object functions are
convex.
• Many subclasses of convex
optimisation like semidefinite
programming and least square
problem are also widely used and
have important applications in
various fields.
• This case guarantees that we are
able to find global minimum.
MATHEMATICAL OPTIMISATION
CONVEX OPTIMISATION
• Objective function is convex
• Feasible set is convex
• Many advantages
• Modelling Flexibility
• Tractability and Scalability
• Sensitivity Analysis relatively simple
• Can naturally incorporate robust
considerations
FUNDAMENTAL CONCEPTS
LINEAR PROGRAMMING
• Linear programming is one of the well studied classes of
optimisation problem.
• A linear program is one which has linear objectives and
constraint functions.
• Examples:
• Max flow: Given a graph, start and end node, capacities on
every edge, find out the maximum flow possible through
edges.
• Simplex, Ellipsoid, Interior Point Method are some of the
well known algorithms for solving linear programming
problems
• Simplex method was one of the first methods to solve these
programs. But all the initial versions took exponential time
• The first polynomial time algorithm was ellipsoid algorithm.
Few years later interior point method was developed and
shown to be in polynomial time.
MATHEMATICAL OPTIMISATION
OTHER CONVEX OPTIMISATION METHODS
• Least Squares Problems
• Used for data fitting
• Semidefinite programming
• Quadratic Programming
MATHEMATICAL OPTIMISATION
SEMIDEFINITE PROGRAMMING
• A broad generalisation of LP to
symmetric matrices
• The intersection of an affine subspace
L and the cone of positive semidefinite
matrices
• Originated in control theory and
combinatorial optimisation
• Convex finite dimensional optimisation
• Essentially solvable in polynomial time
COMPLEXITY MATTERS
NONLINEAR OPTIMISATION
• The general optimisation problem is
intractable
• Even simple looking optimisation
problems can be very hard
• Examples
• Quadratic optimisation problem
with many constraints
• Minimising a multivariate
polynomial
EMBEDDED OPTIMISATION
PRACTICAL EXAMPLES OF USING OPTIMISATION
• In the last decades, the size of
computers and their components
decreased and therefore it became
beneficial to optimise the device
sizing in electric circuits
• For this problem the objective
function is a power consumption
• The variables are widths and lengths
of the device and the constraints are
manufacturing limits, timing
requirements, and maximum area.
PORTFOLIO OPTIMISATION
PRACTICAL EXAMPLES OF USING MATHEMATICAL
OPTIMISATION
• When investing in assets there is a big
risk of loosing invested money and so
it would be a competitive advantage to
posses a control system, that would
find the most risk free way for your
investment
• For this purpose, the objective function
could be overall risk or return variance,
the variables amounts invested in
different assets, and the budget,
maximum and minimum investment
per asset and minimum return would
be our constraints.
DATA FITTING
PRACTICAL EXAMPLES OF USING MATHEMATICAL
OPTIMISATION
• In this case, we are looking for the
best fitting model for our observed
data.
• The objective function can represent
the measure of misfit or prediction
error.
• The variables model parameters and
constraints can feature prior
information and parameter limits.
MODEL PREDICTIVE CONTROL
PRACTICAL EXAMPLES OF USING MATHEMATICAL
OPTIMISATION
• This is a concept of advanced control
systems such as heating control of
intelligent buildings or control of
chemical processes
• This method works with complex
dynamic behaviour of the system and
is aiming mainly to minimise the
performance criterion in the future
that would possibly be subject to
constraints
• In MPC there are dependent and
independent variables
QUANTUM COMPUTING AND MATHEMATICAL OPTIMISATION
MATHEMATICAL OPTIMISATION
LOREM IPSUM
QUANTUM INFORMATION AND MATHEMATICAL OPTIMISATION
• Convexity naturally arises in many
places in Quantum Information
Theory as the possible preparations,
processes and measurements for
Quantum systems are convex sets
• Quantum Error Correction
• Quantum Entanglement Estimation
• Quantum Tomography
LOREM IPSUM
CONVEX OPTIMISATION FOR QUANTUM ENTANGLEMENT
• Using off the shelf semidefinite
programming solvers
• Measurement of relative entropy of
entanglement
• Measurement of Rains bond, known upper
bound on the distillable entanglement
• Identifying the lower bound on the
quantum conditional mutual information
interns of the relative entropy
• At least one subsystem of a multipart state
is a quit
MATHEMATICAL OPTIMISATION IN DIGITAL TECHNOLOGY
INFINITYLABS EXPERIMENTS
MALWARE
MODELLING
RBM, DBN
BIOMETRIC
IDENTITY
GABBOR FILTER
IDEA
ANALYTICS
SVM
KNOWLEDGE
GRAPH
CNN, RCNN
GRADIENT ALGORITHM
REINFORCEMENT
LEARNING
TREE LSTM
NEURAL
DATA
STREAM
HASH GRAPH
OBJECT
DETECTION
FROM
STREAMING
MEDIA
RCNN
QUANTUM
BLOOM
FILTER
GROVER ALGORITHM
Mathematical Optimisation - Fundamentals and Applications

More Related Content

PDF
PPTX
Election Management PPT - 2023.pptx
PDF
Nature-Inspired Optimization Algorithms
PPTX
Operation research ppt chapter one
PPTX
Metodos de ordenamiento
PPTX
NDT techniques
PPTX
Numerical methods and its applications
PPT
Introduction to Optimization.ppt
Election Management PPT - 2023.pptx
Nature-Inspired Optimization Algorithms
Operation research ppt chapter one
Metodos de ordenamiento
NDT techniques
Numerical methods and its applications
Introduction to Optimization.ppt

What's hot (20)

PDF
Logistic Regression in Python | Logistic Regression Example | Machine Learnin...
ODP
Machine Learning With Logistic Regression
PPTX
Optimization tutorial
PPTX
Normal Distribution
PPTX
K-Folds Cross Validation Method
PPTX
Introduction of Xgboost
PPTX
PPTX
NON LINEAR PROGRAMMING
PPTX
Linear and Logistics Regression
PPTX
Logistic Regression | Logistic Regression In Python | Machine Learning Algori...
PDF
Logistic regression
PDF
Logistic regression
PPTX
Machine Learning using Support Vector Machine
PPTX
Probability distributions & expected values
PPTX
Machine Learning - Simple Linear Regression
PPTX
Linear programming
PPTX
Ensemble learning Techniques
PPTX
Optimization problems and algorithms
PDF
Linear regression theory
PPTX
Support vector machine
Logistic Regression in Python | Logistic Regression Example | Machine Learnin...
Machine Learning With Logistic Regression
Optimization tutorial
Normal Distribution
K-Folds Cross Validation Method
Introduction of Xgboost
NON LINEAR PROGRAMMING
Linear and Logistics Regression
Logistic Regression | Logistic Regression In Python | Machine Learning Algori...
Logistic regression
Logistic regression
Machine Learning using Support Vector Machine
Probability distributions & expected values
Machine Learning - Simple Linear Regression
Linear programming
Ensemble learning Techniques
Optimization problems and algorithms
Linear regression theory
Support vector machine
Ad

Similar to Mathematical Optimisation - Fundamentals and Applications (20)

PPTX
01-Introduction_to_Optimization-v2021.2-Sept23-2021.pptx
PPTX
Models of Operational research, Advantages & disadvantages of Operational res...
PDF
Model-Based User Interface Optimization: Part I INTRODUCTION - At SICSA Summe...
PDF
PROCESS OPTIMIZATION (CHEN 421) LECTURE 1.pdf
PDF
CompEng - Lec01 - Introduction To Optimum Design.pdf
PDF
6 data envelopment_analysis
 
PDF
Model-Based User Interface Optimization: Part IV: ADVANCED TOPICS - At SICSA ...
PPTX
1.1optimization concepts in engineering.pptx
PDF
1.1optimization.pdf;;;khgggggggggggghhjj
PPTX
Addressing Uncertainty How to Model and Solve Energy Optimization Problems
PDF
VET4SBO Level 2 module 2 - unit 1 - v1.0 en
PPTX
Optimica Compiler Toolkit - Overview
PPTX
UNIT-2 Quantitaitive Anlaysis for Mgt Decisions.pptx
PDF
Diseño rapido de amplificadores con valores
PPTX
Convex optmization in communications
PPT
Trial lecture
PDF
Fahroo - Computational Mathematics - Spring Review 2012
PPTX
QA CHAPTER II.pptx
PPTX
Introduction to Linear programing.ORpptx
PPTX
linearprogramingproblemlpp-180729145239.pptx
01-Introduction_to_Optimization-v2021.2-Sept23-2021.pptx
Models of Operational research, Advantages & disadvantages of Operational res...
Model-Based User Interface Optimization: Part I INTRODUCTION - At SICSA Summe...
PROCESS OPTIMIZATION (CHEN 421) LECTURE 1.pdf
CompEng - Lec01 - Introduction To Optimum Design.pdf
6 data envelopment_analysis
 
Model-Based User Interface Optimization: Part IV: ADVANCED TOPICS - At SICSA ...
1.1optimization concepts in engineering.pptx
1.1optimization.pdf;;;khgggggggggggghhjj
Addressing Uncertainty How to Model and Solve Energy Optimization Problems
VET4SBO Level 2 module 2 - unit 1 - v1.0 en
Optimica Compiler Toolkit - Overview
UNIT-2 Quantitaitive Anlaysis for Mgt Decisions.pptx
Diseño rapido de amplificadores con valores
Convex optmization in communications
Trial lecture
Fahroo - Computational Mathematics - Spring Review 2012
QA CHAPTER II.pptx
Introduction to Linear programing.ORpptx
linearprogramingproblemlpp-180729145239.pptx
Ad

More from Gokul Alex (20)

PDF
Blockchain Technology in Banking Services - A Review
PDF
DEFCON28_2020_EthereumSecurity_PreventingDDoS_VDF
PDF
Digital Innovation and Dynamics of Entrepreneurship
PDF
Decentralised AI and Distributed Ledgers - An Introduction
PDF
R3Corda - Architecture Overview - Concepts and Components
PDF
Covid19 ContactTracing - Privacy Preserving Proximity Protocols
PDF
Cybersecurity Context in African Continent - Way Forward
PDF
Creative Careers for Post Pandemic Times
PDF
Imagining Intelligent Information Machines for 2020
PDF
Blockchain Essentials for Business Leaders - Value Propositions and Advantage...
PDF
A Concise Introduction to Cryptographic Concepts
PDF
Applying Blockchain Technology for Digital Transformation
PDF
Cognitive Commerce powered by Creative Convergence of AI, Analytics and Autom...
PDF
Decentralised AI through Distributed Ledger Technologies
PDF
Cloud Security Engineering - Tools and Techniques
PDF
Quantum Computing - A History in the Making
PDF
Future of Education through Exponential and Emerging Technologies
PDF
Cloud Security - Emerging Facets and Frontiers
PPTX
Introduction to Blockchain Business Models
PDF
Blockchain and Cryptography - A Primer
Blockchain Technology in Banking Services - A Review
DEFCON28_2020_EthereumSecurity_PreventingDDoS_VDF
Digital Innovation and Dynamics of Entrepreneurship
Decentralised AI and Distributed Ledgers - An Introduction
R3Corda - Architecture Overview - Concepts and Components
Covid19 ContactTracing - Privacy Preserving Proximity Protocols
Cybersecurity Context in African Continent - Way Forward
Creative Careers for Post Pandemic Times
Imagining Intelligent Information Machines for 2020
Blockchain Essentials for Business Leaders - Value Propositions and Advantage...
A Concise Introduction to Cryptographic Concepts
Applying Blockchain Technology for Digital Transformation
Cognitive Commerce powered by Creative Convergence of AI, Analytics and Autom...
Decentralised AI through Distributed Ledger Technologies
Cloud Security Engineering - Tools and Techniques
Quantum Computing - A History in the Making
Future of Education through Exponential and Emerging Technologies
Cloud Security - Emerging Facets and Frontiers
Introduction to Blockchain Business Models
Blockchain and Cryptography - A Primer

Recently uploaded (20)

PPT
Project quality management in manufacturing
PDF
Model Code of Practice - Construction Work - 21102022 .pdf
PPTX
Welding lecture in detail for understanding
PPTX
FINAL REVIEW FOR COPD DIANOSIS FOR PULMONARY DISEASE.pptx
PPTX
Lecture Notes Electrical Wiring System Components
PPTX
CH1 Production IntroductoryConcepts.pptx
PDF
Operating System & Kernel Study Guide-1 - converted.pdf
PDF
Well-logging-methods_new................
PPTX
Infosys Presentation by1.Riyan Bagwan 2.Samadhan Naiknavare 3.Gaurav Shinde 4...
PPTX
UNIT-1 - COAL BASED THERMAL POWER PLANTS
PPTX
CYBER-CRIMES AND SECURITY A guide to understanding
PPTX
Engineering Ethics, Safety and Environment [Autosaved] (1).pptx
PDF
R24 SURVEYING LAB MANUAL for civil enggi
PDF
composite construction of structures.pdf
PDF
Automation-in-Manufacturing-Chapter-Introduction.pdf
PDF
SM_6th-Sem__Cse_Internet-of-Things.pdf IOT
PPTX
OOP with Java - Java Introduction (Basics)
PDF
The CXO Playbook 2025 – Future-Ready Strategies for C-Suite Leaders Cerebrai...
PDF
Mohammad Mahdi Farshadian CV - Prospective PhD Student 2026
PDF
PRIZ Academy - 9 Windows Thinking Where to Invest Today to Win Tomorrow.pdf
Project quality management in manufacturing
Model Code of Practice - Construction Work - 21102022 .pdf
Welding lecture in detail for understanding
FINAL REVIEW FOR COPD DIANOSIS FOR PULMONARY DISEASE.pptx
Lecture Notes Electrical Wiring System Components
CH1 Production IntroductoryConcepts.pptx
Operating System & Kernel Study Guide-1 - converted.pdf
Well-logging-methods_new................
Infosys Presentation by1.Riyan Bagwan 2.Samadhan Naiknavare 3.Gaurav Shinde 4...
UNIT-1 - COAL BASED THERMAL POWER PLANTS
CYBER-CRIMES AND SECURITY A guide to understanding
Engineering Ethics, Safety and Environment [Autosaved] (1).pptx
R24 SURVEYING LAB MANUAL for civil enggi
composite construction of structures.pdf
Automation-in-Manufacturing-Chapter-Introduction.pdf
SM_6th-Sem__Cse_Internet-of-Things.pdf IOT
OOP with Java - Java Introduction (Basics)
The CXO Playbook 2025 – Future-Ready Strategies for C-Suite Leaders Cerebrai...
Mohammad Mahdi Farshadian CV - Prospective PhD Student 2026
PRIZ Academy - 9 Windows Thinking Where to Invest Today to Win Tomorrow.pdf

Mathematical Optimisation - Fundamentals and Applications

  • 1. MATHEMATICAL OPTIMISATION AN INTRODUCTION TO THE INDUSTRIAL APPICATIONS OF
  • 2. KNOWN AS NON-LINEAR PROGRAMMING OR NUMERICAL OPTIMISATION OVERVIEW
  • 3. INTRODUCTION MATHEMATICAL OPTIMISATION IN THE REAL WORLD • Manufacturing • Production • Inventory Control • Transportation • Scheduling • Networks • Finance • Control Engineering • Marketing • Policy Modelling
  • 4. A NARRATIVE MATHEMATICAL OPTIMISATION IN THE REAL WORLD • Optimising time in the production cycle of an industry, optimising tax in a tax return, optimising length in a tour are mathematical optimisation problems we encounter in our daily life. • A solution that satisfying all the constraints is called a feasible solution • The set of all solutions, satisfying all the constraints is called the feasible region
  • 5. A SNAPSHOT HISTORY • 1940s • Linear Programming • 1950s • Quadratic Programming • 1960s • Geometric Programming • 1990s • Semidefinite Programming • Quadratically Constrained Quadratic Programming • Robust Optimizaton • Sum of Squares Programming
  • 6. A QUICK SURVEY NEW APPLICATIONS SINCE 1990 • Linear matrix inequality techniques in control • Circuit design via geometric programming • Support vector machine learning via quadratic programming • Semidefinite programming relaxations in combinatorial optimisation • L1- norm optimisation for sparse signal reconstruction • Applications in quantum information theory, computer vision, image processing, finance
  • 7. MATHEMATICAL OPTIMISATION MANY OTHER KINDS … • Linear Network Optimization • Specialization of LP to problems with graph structure ( shortest path, transportation, trans-shipment, etc.) • Integer Programming • Decision variables are allowed only integer values • Combinatorial optimisation • Decision variables have nice combinatorial structures ( e.g. trees, permutations, matchings )
  • 8. DEEPER INSIGHTS MATHEMATICAL OPTIMISATION : SPECIAL CASES • Optimal solution need not be unique • One of the special case is when variables have symmetry. • In this case, some kind of permutation can be applied to get multiple optimal solution
  • 9. MATHEMATICAL OPTIMISATION ESSENTIAL NOTIONS • Design Variables • Objective Functions • Inequality constraint functions • Equality constraint functions • Optimum Vector
  • 10. WHAT IS MATHEMATICAL OPTIMISATION FORMALLY, MATHEMATICAL OPTIMISATION IS THE PROCESS OF FORMULATION AND SOLUTION OF A CONSTRAINED OPTIMISATION PROBLEM OF THE GENERAL MATHEMATICAL FORM: MINIMIZE F(X), X = [X1, X2, X3, …. ] T E R N SUBJECT TO THE CONSTRAINTS G(X) < 0 , J = 1, 2, … , M H(X) = 0 , J = 1, 2, …, R WHERE F(X), G(X), AND H(X) ARE SCALAR FUNCTIONS OF THE REAL COLUMN VECTOR X.
  • 11. MATHEMATICAL OPTIMISATION OBJECTIVE AND CONSTRAINT FUNCTIONS • The values of the functions f(x), g(x), and h(x) at any point x = [x1, x2, …xn] may in practice be obtained in different ways • From analytically known formulae • as the outcome of some computational process, g(x) = a(x) - amax • From measurement taken from a physical process, e.g. h1(x) = T(x) - T0
  • 12. INTRODUCTION MATHEMATICAL OPTIMISATION : PROBLEM TYPES • Limited or Unlimited • One variable or Many variables • Discrete Variable or Continuous Variables • Static Problems or Dynamic Problems • Deterministic or Stochastic Problems • Linear Equations or Nonlinear Equations
  • 13. MATHEMATICAL OPTIMISATION SENSITIVITY AND ROBUSTNESS • Every model we write is only a coarse description of reality • Conclusions about the model may more may not correspond to actual behaviour • Validity of models often informal, implicit • These considerations sometimes incorporated through sensitivity analysis
  • 14. MATHEMATICAL OPTIMISATION SENSITIVITY AND ROBUSTNESS • More recently, better techniques to explicit account of difference between real world and model ( robust control, robust optimisation ) • Constraints and / or objective known only approximately • Implemented solution different from the computed one
  • 15. MODEL CLASSIFICATIONS MATHEMATICAL OPTIMISATION • Unconstrained Optimisation • Linear Optimisation • Linear Constrained Optimisation : • If the constraint functions are linear / affine • Conic Linear Optimisation : • If both the objective and the constraint functions are linear / affine but variables in a convex cone • Quadratically constrained Quadratic Optimisation : • If both the objective and constraint functions are quadratic
  • 16. MATHEMATICAL OPTIMISATION GLOBAL OPTIMISATION • Consider unconstrained optimisation • Typically extremely difficult, many local minima • Many questions can be posed in these terms ( protein folding ) • Very flexible formulation • But hard to do anything substantial with it • Complexity theoretic obstacles
  • 17. BASIC OVERVIEW CONVEX OPTIMISATION • Convex optimisation is a generation of linear programming where the constraints and object functions are convex. • Many subclasses of convex optimisation like semidefinite programming and least square problem are also widely used and have important applications in various fields. • This case guarantees that we are able to find global minimum.
  • 18. MATHEMATICAL OPTIMISATION CONVEX OPTIMISATION • Objective function is convex • Feasible set is convex • Many advantages • Modelling Flexibility • Tractability and Scalability • Sensitivity Analysis relatively simple • Can naturally incorporate robust considerations
  • 19. FUNDAMENTAL CONCEPTS LINEAR PROGRAMMING • Linear programming is one of the well studied classes of optimisation problem. • A linear program is one which has linear objectives and constraint functions. • Examples: • Max flow: Given a graph, start and end node, capacities on every edge, find out the maximum flow possible through edges. • Simplex, Ellipsoid, Interior Point Method are some of the well known algorithms for solving linear programming problems • Simplex method was one of the first methods to solve these programs. But all the initial versions took exponential time • The first polynomial time algorithm was ellipsoid algorithm. Few years later interior point method was developed and shown to be in polynomial time.
  • 20. MATHEMATICAL OPTIMISATION OTHER CONVEX OPTIMISATION METHODS • Least Squares Problems • Used for data fitting • Semidefinite programming • Quadratic Programming
  • 21. MATHEMATICAL OPTIMISATION SEMIDEFINITE PROGRAMMING • A broad generalisation of LP to symmetric matrices • The intersection of an affine subspace L and the cone of positive semidefinite matrices • Originated in control theory and combinatorial optimisation • Convex finite dimensional optimisation • Essentially solvable in polynomial time
  • 22. COMPLEXITY MATTERS NONLINEAR OPTIMISATION • The general optimisation problem is intractable • Even simple looking optimisation problems can be very hard • Examples • Quadratic optimisation problem with many constraints • Minimising a multivariate polynomial
  • 23. EMBEDDED OPTIMISATION PRACTICAL EXAMPLES OF USING OPTIMISATION • In the last decades, the size of computers and their components decreased and therefore it became beneficial to optimise the device sizing in electric circuits • For this problem the objective function is a power consumption • The variables are widths and lengths of the device and the constraints are manufacturing limits, timing requirements, and maximum area.
  • 24. PORTFOLIO OPTIMISATION PRACTICAL EXAMPLES OF USING MATHEMATICAL OPTIMISATION • When investing in assets there is a big risk of loosing invested money and so it would be a competitive advantage to posses a control system, that would find the most risk free way for your investment • For this purpose, the objective function could be overall risk or return variance, the variables amounts invested in different assets, and the budget, maximum and minimum investment per asset and minimum return would be our constraints.
  • 25. DATA FITTING PRACTICAL EXAMPLES OF USING MATHEMATICAL OPTIMISATION • In this case, we are looking for the best fitting model for our observed data. • The objective function can represent the measure of misfit or prediction error. • The variables model parameters and constraints can feature prior information and parameter limits.
  • 26. MODEL PREDICTIVE CONTROL PRACTICAL EXAMPLES OF USING MATHEMATICAL OPTIMISATION • This is a concept of advanced control systems such as heating control of intelligent buildings or control of chemical processes • This method works with complex dynamic behaviour of the system and is aiming mainly to minimise the performance criterion in the future that would possibly be subject to constraints • In MPC there are dependent and independent variables
  • 27. QUANTUM COMPUTING AND MATHEMATICAL OPTIMISATION MATHEMATICAL OPTIMISATION
  • 28. LOREM IPSUM QUANTUM INFORMATION AND MATHEMATICAL OPTIMISATION • Convexity naturally arises in many places in Quantum Information Theory as the possible preparations, processes and measurements for Quantum systems are convex sets • Quantum Error Correction • Quantum Entanglement Estimation • Quantum Tomography
  • 29. LOREM IPSUM CONVEX OPTIMISATION FOR QUANTUM ENTANGLEMENT • Using off the shelf semidefinite programming solvers • Measurement of relative entropy of entanglement • Measurement of Rains bond, known upper bound on the distillable entanglement • Identifying the lower bound on the quantum conditional mutual information interns of the relative entropy • At least one subsystem of a multipart state is a quit
  • 30. MATHEMATICAL OPTIMISATION IN DIGITAL TECHNOLOGY INFINITYLABS EXPERIMENTS