SlideShare a Scribd company logo
1 of 39
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

What's hot

NON LINEAR PROGRAMMING
NON LINEAR PROGRAMMING NON LINEAR PROGRAMMING
NON LINEAR PROGRAMMING karishma gupta
 
Introduction to optimization technique
Introduction to optimization techniqueIntroduction to optimization technique
Introduction to optimization techniqueKAMINISINGH963
 
Travelling salesman problem
Travelling salesman problemTravelling salesman problem
Travelling salesman problemhamza haseeb
 
Optimization problems and algorithms
Optimization problems and  algorithmsOptimization problems and  algorithms
Optimization problems and algorithmsAboul Ella Hassanien
 
Quadratic programming (Tool of optimization)
Quadratic programming (Tool of optimization)Quadratic programming (Tool of optimization)
Quadratic programming (Tool of optimization)VARUN KUMAR
 
Simulated Annealing
Simulated AnnealingSimulated Annealing
Simulated AnnealingJoy Dutta
 
Lesson 22: Optimization Problems (slides)
Lesson 22: Optimization Problems (slides)Lesson 22: Optimization Problems (slides)
Lesson 22: Optimization Problems (slides)Matthew Leingang
 
Multivariable Optimization-for class (1).pptx
Multivariable Optimization-for class (1).pptxMultivariable Optimization-for class (1).pptx
Multivariable Optimization-for class (1).pptxNehaJangir5
 
Multi Objective Optimization and Pareto Multi Objective Optimization with cas...
Multi Objective Optimization and Pareto Multi Objective Optimization with cas...Multi Objective Optimization and Pareto Multi Objective Optimization with cas...
Multi Objective Optimization and Pareto Multi Objective Optimization with cas...Aditya Deshpande
 
Fast Fourier Transform
Fast Fourier TransformFast Fourier Transform
Fast Fourier Transformop205
 
dynamic programming complete by Mumtaz Ali (03154103173)
dynamic programming complete by Mumtaz Ali (03154103173)dynamic programming complete by Mumtaz Ali (03154103173)
dynamic programming complete by Mumtaz Ali (03154103173)Mumtaz Ali
 
Mathematical modelling
Mathematical modellingMathematical modelling
Mathematical modellingNandiniNandus
 
Linear Programming (graphical method)
Linear Programming (graphical method)Linear Programming (graphical method)
Linear Programming (graphical method)Kamel Attar
 
Multi Objective Optimization
Multi Objective OptimizationMulti Objective Optimization
Multi Objective OptimizationNawroz University
 

What's hot (20)

NON LINEAR PROGRAMMING
NON LINEAR PROGRAMMING NON LINEAR PROGRAMMING
NON LINEAR PROGRAMMING
 
Introduction to optimization technique
Introduction to optimization techniqueIntroduction to optimization technique
Introduction to optimization technique
 
Travelling salesman problem
Travelling salesman problemTravelling salesman problem
Travelling salesman problem
 
Optimization problems and algorithms
Optimization problems and  algorithmsOptimization problems and  algorithms
Optimization problems and algorithms
 
Quadratic programming (Tool of optimization)
Quadratic programming (Tool of optimization)Quadratic programming (Tool of optimization)
Quadratic programming (Tool of optimization)
 
Combinatorial Optimization
Combinatorial OptimizationCombinatorial Optimization
Combinatorial Optimization
 
Differential evolution
Differential evolutionDifferential evolution
Differential evolution
 
Unit.2. linear programming
Unit.2. linear programmingUnit.2. linear programming
Unit.2. linear programming
 
Optmization techniques
Optmization techniquesOptmization techniques
Optmization techniques
 
Simulated Annealing
Simulated AnnealingSimulated Annealing
Simulated Annealing
 
Lesson 22: Optimization Problems (slides)
Lesson 22: Optimization Problems (slides)Lesson 22: Optimization Problems (slides)
Lesson 22: Optimization Problems (slides)
 
Multivariable Optimization-for class (1).pptx
Multivariable Optimization-for class (1).pptxMultivariable Optimization-for class (1).pptx
Multivariable Optimization-for class (1).pptx
 
Multi Objective Optimization and Pareto Multi Objective Optimization with cas...
Multi Objective Optimization and Pareto Multi Objective Optimization with cas...Multi Objective Optimization and Pareto Multi Objective Optimization with cas...
Multi Objective Optimization and Pareto Multi Objective Optimization with cas...
 
Fast Fourier Transform
Fast Fourier TransformFast Fourier Transform
Fast Fourier Transform
 
Optimization tutorial
Optimization tutorialOptimization tutorial
Optimization tutorial
 
dynamic programming complete by Mumtaz Ali (03154103173)
dynamic programming complete by Mumtaz Ali (03154103173)dynamic programming complete by Mumtaz Ali (03154103173)
dynamic programming complete by Mumtaz Ali (03154103173)
 
Mathematical modelling
Mathematical modellingMathematical modelling
Mathematical modelling
 
Linear Programming (graphical method)
Linear Programming (graphical method)Linear Programming (graphical method)
Linear Programming (graphical method)
 
kalman filtering "From Basics to unscented Kaman filter"
 kalman filtering "From Basics to unscented Kaman filter" kalman filtering "From Basics to unscented Kaman filter"
kalman filtering "From Basics to unscented Kaman filter"
 
Multi Objective Optimization
Multi Objective OptimizationMulti Objective Optimization
Multi Objective Optimization
 

Similar to Mathematical Optimisation - Fundamentals and Applications

01-Introduction_to_Optimization-v2021.2-Sept23-2021.pptx
01-Introduction_to_Optimization-v2021.2-Sept23-2021.pptx01-Introduction_to_Optimization-v2021.2-Sept23-2021.pptx
01-Introduction_to_Optimization-v2021.2-Sept23-2021.pptxTran273185
 
Models of Operational research, Advantages & disadvantages of Operational res...
Models of Operational research, Advantages & disadvantages of Operational res...Models of Operational research, Advantages & disadvantages of Operational res...
Models of Operational research, Advantages & disadvantages of Operational res...Sunny Mervyne Baa
 
Model-Based User Interface Optimization: Part I INTRODUCTION - At SICSA Summe...
Model-Based User Interface Optimization: Part I INTRODUCTION - At SICSA Summe...Model-Based User Interface Optimization: Part I INTRODUCTION - At SICSA Summe...
Model-Based User Interface Optimization: Part I INTRODUCTION - At SICSA Summe...Aalto University
 
CompEng - Lec01 - Introduction To Optimum Design.pdf
CompEng - Lec01 - Introduction To Optimum Design.pdfCompEng - Lec01 - Introduction To Optimum Design.pdf
CompEng - Lec01 - Introduction To Optimum Design.pdfnooreldeenmagdy2
 
6 data envelopment_analysis
6 data envelopment_analysis6 data envelopment_analysis
6 data envelopment_analysisFEG
 
Model-Based User Interface Optimization: Part IV: ADVANCED TOPICS - At SICSA ...
Model-Based User Interface Optimization: Part IV: ADVANCED TOPICS - At SICSA ...Model-Based User Interface Optimization: Part IV: ADVANCED TOPICS - At SICSA ...
Model-Based User Interface Optimization: Part IV: ADVANCED TOPICS - At SICSA ...Aalto University
 
Addressing Uncertainty How to Model and Solve Energy Optimization Problems
Addressing Uncertainty How to Model and Solve Energy Optimization ProblemsAddressing Uncertainty How to Model and Solve Energy Optimization Problems
Addressing Uncertainty How to Model and Solve Energy Optimization Problemsoptimizatiodirectdirect
 
VET4SBO Level 2 module 2 - unit 1 - v1.0 en
VET4SBO Level 2   module 2 - unit 1 - v1.0 enVET4SBO Level 2   module 2 - unit 1 - v1.0 en
VET4SBO Level 2 module 2 - unit 1 - v1.0 enKarel Van Isacker
 
Optimica Compiler Toolkit - Overview
Optimica Compiler Toolkit - OverviewOptimica Compiler Toolkit - Overview
Optimica Compiler Toolkit - OverviewModelon
 
UNIT-2 Quantitaitive Anlaysis for Mgt Decisions.pptx
UNIT-2 Quantitaitive Anlaysis for Mgt Decisions.pptxUNIT-2 Quantitaitive Anlaysis for Mgt Decisions.pptx
UNIT-2 Quantitaitive Anlaysis for Mgt Decisions.pptxMinilikDerseh1
 
Diseño rapido de amplificadores con valores
Diseño rapido de amplificadores con valoresDiseño rapido de amplificadores con valores
Diseño rapido de amplificadores con valoresFélix Chávez
 
Convex optmization in communications
Convex optmization in communicationsConvex optmization in communications
Convex optmization in communicationsDeepshika Reddy
 
QA CHAPTER II.pptx
QA CHAPTER II.pptxQA CHAPTER II.pptx
QA CHAPTER II.pptxTeshome48
 
Introduction to Linear programing.ORpptx
Introduction to Linear programing.ORpptxIntroduction to Linear programing.ORpptx
Introduction to Linear programing.ORpptxaishaashraf31
 
linearprogramingproblemlpp-180729145239.pptx
linearprogramingproblemlpp-180729145239.pptxlinearprogramingproblemlpp-180729145239.pptx
linearprogramingproblemlpp-180729145239.pptxKOUSHIkPIPPLE
 
Optimization Computing Platform for the Construction Industry
Optimization Computing Platform for the Construction IndustryOptimization Computing Platform for the Construction Industry
Optimization Computing Platform for the Construction IndustryKostas Dimitriou
 
Derivative Free Optimization and Robust Optimization
Derivative Free Optimization and Robust OptimizationDerivative Free Optimization and Robust Optimization
Derivative Free Optimization and Robust OptimizationSSA KPI
 

Similar to Mathematical Optimisation - Fundamentals and Applications (20)

01-Introduction_to_Optimization-v2021.2-Sept23-2021.pptx
01-Introduction_to_Optimization-v2021.2-Sept23-2021.pptx01-Introduction_to_Optimization-v2021.2-Sept23-2021.pptx
01-Introduction_to_Optimization-v2021.2-Sept23-2021.pptx
 
Models of Operational research, Advantages & disadvantages of Operational res...
Models of Operational research, Advantages & disadvantages of Operational res...Models of Operational research, Advantages & disadvantages of Operational res...
Models of Operational research, Advantages & disadvantages of Operational res...
 
Model-Based User Interface Optimization: Part I INTRODUCTION - At SICSA Summe...
Model-Based User Interface Optimization: Part I INTRODUCTION - At SICSA Summe...Model-Based User Interface Optimization: Part I INTRODUCTION - At SICSA Summe...
Model-Based User Interface Optimization: Part I INTRODUCTION - At SICSA Summe...
 
CompEng - Lec01 - Introduction To Optimum Design.pdf
CompEng - Lec01 - Introduction To Optimum Design.pdfCompEng - Lec01 - Introduction To Optimum Design.pdf
CompEng - Lec01 - Introduction To Optimum Design.pdf
 
6 data envelopment_analysis
6 data envelopment_analysis6 data envelopment_analysis
6 data envelopment_analysis
 
Model-Based User Interface Optimization: Part IV: ADVANCED TOPICS - At SICSA ...
Model-Based User Interface Optimization: Part IV: ADVANCED TOPICS - At SICSA ...Model-Based User Interface Optimization: Part IV: ADVANCED TOPICS - At SICSA ...
Model-Based User Interface Optimization: Part IV: ADVANCED TOPICS - At SICSA ...
 
Addressing Uncertainty How to Model and Solve Energy Optimization Problems
Addressing Uncertainty How to Model and Solve Energy Optimization ProblemsAddressing Uncertainty How to Model and Solve Energy Optimization Problems
Addressing Uncertainty How to Model and Solve Energy Optimization Problems
 
VET4SBO Level 2 module 2 - unit 1 - v1.0 en
VET4SBO Level 2   module 2 - unit 1 - v1.0 enVET4SBO Level 2   module 2 - unit 1 - v1.0 en
VET4SBO Level 2 module 2 - unit 1 - v1.0 en
 
Optimica Compiler Toolkit - Overview
Optimica Compiler Toolkit - OverviewOptimica Compiler Toolkit - Overview
Optimica Compiler Toolkit - Overview
 
UNIT-2 Quantitaitive Anlaysis for Mgt Decisions.pptx
UNIT-2 Quantitaitive Anlaysis for Mgt Decisions.pptxUNIT-2 Quantitaitive Anlaysis for Mgt Decisions.pptx
UNIT-2 Quantitaitive Anlaysis for Mgt Decisions.pptx
 
Diseño rapido de amplificadores con valores
Diseño rapido de amplificadores con valoresDiseño rapido de amplificadores con valores
Diseño rapido de amplificadores con valores
 
Convex optmization in communications
Convex optmization in communicationsConvex optmization in communications
Convex optmization in communications
 
Trial lecture
Trial lectureTrial lecture
Trial lecture
 
Fahroo - Computational Mathematics - Spring Review 2012
Fahroo - Computational Mathematics - Spring Review 2012 Fahroo - Computational Mathematics - Spring Review 2012
Fahroo - Computational Mathematics - Spring Review 2012
 
QA CHAPTER II.pptx
QA CHAPTER II.pptxQA CHAPTER II.pptx
QA CHAPTER II.pptx
 
Introduction to Linear programing.ORpptx
Introduction to Linear programing.ORpptxIntroduction to Linear programing.ORpptx
Introduction to Linear programing.ORpptx
 
linearprogramingproblemlpp-180729145239.pptx
linearprogramingproblemlpp-180729145239.pptxlinearprogramingproblemlpp-180729145239.pptx
linearprogramingproblemlpp-180729145239.pptx
 
Linear programing
Linear programing Linear programing
Linear programing
 
Optimization Computing Platform for the Construction Industry
Optimization Computing Platform for the Construction IndustryOptimization Computing Platform for the Construction Industry
Optimization Computing Platform for the Construction Industry
 
Derivative Free Optimization and Robust Optimization
Derivative Free Optimization and Robust OptimizationDerivative Free Optimization and Robust Optimization
Derivative Free Optimization and Robust Optimization
 

More from Gokul Alex

Blockchain Technology in Banking Services - A Review
Blockchain Technology in Banking Services - A ReviewBlockchain Technology in Banking Services - A Review
Blockchain Technology in Banking Services - A ReviewGokul Alex
 
DEFCON28_2020_EthereumSecurity_PreventingDDoS_VDF
DEFCON28_2020_EthereumSecurity_PreventingDDoS_VDFDEFCON28_2020_EthereumSecurity_PreventingDDoS_VDF
DEFCON28_2020_EthereumSecurity_PreventingDDoS_VDFGokul Alex
 
Digital Innovation and Dynamics of Entrepreneurship
Digital Innovation and Dynamics of Entrepreneurship Digital Innovation and Dynamics of Entrepreneurship
Digital Innovation and Dynamics of Entrepreneurship Gokul Alex
 
Decentralised AI and Distributed Ledgers - An Introduction
Decentralised AI and Distributed Ledgers - An IntroductionDecentralised AI and Distributed Ledgers - An Introduction
Decentralised AI and Distributed Ledgers - An IntroductionGokul Alex
 
R3Corda - Architecture Overview - Concepts and Components
R3Corda - Architecture Overview - Concepts and ComponentsR3Corda - Architecture Overview - Concepts and Components
R3Corda - Architecture Overview - Concepts and ComponentsGokul Alex
 
Covid19 ContactTracing - Privacy Preserving Proximity Protocols
Covid19 ContactTracing - Privacy Preserving Proximity ProtocolsCovid19 ContactTracing - Privacy Preserving Proximity Protocols
Covid19 ContactTracing - Privacy Preserving Proximity ProtocolsGokul Alex
 
Cybersecurity Context in African Continent - Way Forward
Cybersecurity Context in African Continent - Way ForwardCybersecurity Context in African Continent - Way Forward
Cybersecurity Context in African Continent - Way ForwardGokul Alex
 
Creative Careers for Post Pandemic Times
Creative Careers for Post Pandemic TimesCreative Careers for Post Pandemic Times
Creative Careers for Post Pandemic TimesGokul Alex
 
Imagining Intelligent Information Machines for 2020
Imagining Intelligent Information Machines for 2020Imagining Intelligent Information Machines for 2020
Imagining Intelligent Information Machines for 2020Gokul Alex
 
Blockchain Essentials for Business Leaders - Value Propositions and Advantage...
Blockchain Essentials for Business Leaders - Value Propositions and Advantage...Blockchain Essentials for Business Leaders - Value Propositions and Advantage...
Blockchain Essentials for Business Leaders - Value Propositions and Advantage...Gokul Alex
 
A Concise Introduction to Cryptographic Concepts
A Concise Introduction to Cryptographic ConceptsA Concise Introduction to Cryptographic Concepts
A Concise Introduction to Cryptographic ConceptsGokul Alex
 
Applying Blockchain Technology for Digital Transformation
Applying Blockchain Technology for Digital TransformationApplying Blockchain Technology for Digital Transformation
Applying Blockchain Technology for Digital TransformationGokul Alex
 
Cognitive Commerce powered by Creative Convergence of AI, Analytics and Autom...
Cognitive Commerce powered by Creative Convergence of AI, Analytics and Autom...Cognitive Commerce powered by Creative Convergence of AI, Analytics and Autom...
Cognitive Commerce powered by Creative Convergence of AI, Analytics and Autom...Gokul Alex
 
Decentralised AI through Distributed Ledger Technologies
Decentralised AI through Distributed Ledger Technologies Decentralised AI through Distributed Ledger Technologies
Decentralised AI through Distributed Ledger Technologies Gokul Alex
 
Cloud Security Engineering - Tools and Techniques
Cloud Security Engineering - Tools and TechniquesCloud Security Engineering - Tools and Techniques
Cloud Security Engineering - Tools and TechniquesGokul Alex
 
Quantum Computing - A History in the Making
Quantum Computing - A History in the Making Quantum Computing - A History in the Making
Quantum Computing - A History in the Making Gokul Alex
 
Future of Education through Exponential and Emerging Technologies
Future of Education through Exponential and Emerging TechnologiesFuture of Education through Exponential and Emerging Technologies
Future of Education through Exponential and Emerging TechnologiesGokul Alex
 
Cloud Security - Emerging Facets and Frontiers
Cloud Security - Emerging Facets and FrontiersCloud Security - Emerging Facets and Frontiers
Cloud Security - Emerging Facets and FrontiersGokul Alex
 
Introduction to Blockchain Business Models
Introduction to Blockchain Business ModelsIntroduction to Blockchain Business Models
Introduction to Blockchain Business ModelsGokul Alex
 
Blockchain and Cryptography - A Primer
Blockchain and Cryptography - A PrimerBlockchain and Cryptography - A Primer
Blockchain and Cryptography - A PrimerGokul Alex
 

More from Gokul Alex (20)

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

Recently uploaded

The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...ranjana rawat
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...ranjana rawat
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Dr.Costas Sachpazis
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSRajkumarAkumalla
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learningmisbanausheenparvam
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxthe ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxhumanexperienceaaa
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝soniya singh
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSCAESB
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxwendy cai
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Christo Ananth
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 

Recently uploaded (20)

Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learning
 
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptxExploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxthe ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentation
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptx
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 

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