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

Classification of optimization Techniques
Classification of optimization TechniquesClassification of optimization Techniques
Classification of optimization Techniquesshelememosisa
 
introduction to Numerical Analysis
introduction to Numerical Analysisintroduction to Numerical Analysis
introduction to Numerical AnalysisGhulam Mehdi Sahito
 
Introduction to Approximation Algorithms
Introduction to Approximation AlgorithmsIntroduction to Approximation Algorithms
Introduction to Approximation AlgorithmsJhoirene Clemente
 
Travelling Salesman Problem
Travelling Salesman ProblemTravelling Salesman Problem
Travelling Salesman ProblemDaniel Raditya
 
Engineering Numerical Analysis Lecture-1
Engineering Numerical Analysis Lecture-1Engineering Numerical Analysis Lecture-1
Engineering Numerical Analysis Lecture-1Muhammad Waqas
 
diophantine equation and congruence puzzles
diophantine equation and congruence puzzlesdiophantine equation and congruence puzzles
diophantine equation and congruence puzzlesanonymous
 
Modern trends in optimization techniques
Modern trends in optimization techniquesModern trends in optimization techniques
Modern trends in optimization techniquesDYPCET
 
Euler and improved euler method
Euler and improved euler methodEuler and improved euler method
Euler and improved euler methodSohaib Butt
 
Nonlinear programming 2013
Nonlinear programming 2013Nonlinear programming 2013
Nonlinear programming 2013sharifz
 
Church Turing Thesis
Church Turing ThesisChurch Turing Thesis
Church Turing ThesisHemant Sharma
 
Artificial Bee Colony algorithm
Artificial Bee Colony algorithmArtificial Bee Colony algorithm
Artificial Bee Colony algorithmAhmed Fouad Ali
 
Kalman filter for Beginners
Kalman filter for BeginnersKalman filter for Beginners
Kalman filter for Beginnerswinfred lu
 

What's hot (20)

Lecture27 linear programming
Lecture27 linear programmingLecture27 linear programming
Lecture27 linear programming
 
Classification of optimization Techniques
Classification of optimization TechniquesClassification of optimization Techniques
Classification of optimization Techniques
 
introduction to Numerical Analysis
introduction to Numerical Analysisintroduction to Numerical Analysis
introduction to Numerical Analysis
 
Introduction to Approximation Algorithms
Introduction to Approximation AlgorithmsIntroduction to Approximation Algorithms
Introduction to Approximation Algorithms
 
APPLICATION OF NUMERICAL METHODS IN SMALL SIZE
APPLICATION OF NUMERICAL METHODS IN SMALL SIZEAPPLICATION OF NUMERICAL METHODS IN SMALL SIZE
APPLICATION OF NUMERICAL METHODS IN SMALL SIZE
 
Travelling Salesman Problem
Travelling Salesman ProblemTravelling Salesman Problem
Travelling Salesman Problem
 
Engineering Numerical Analysis Lecture-1
Engineering Numerical Analysis Lecture-1Engineering Numerical Analysis Lecture-1
Engineering Numerical Analysis Lecture-1
 
diophantine equation and congruence puzzles
diophantine equation and congruence puzzlesdiophantine equation and congruence puzzles
diophantine equation and congruence puzzles
 
5 csp
5 csp5 csp
5 csp
 
Modern trends in optimization techniques
Modern trends in optimization techniquesModern trends in optimization techniques
Modern trends in optimization techniques
 
Euler and improved euler method
Euler and improved euler methodEuler and improved euler method
Euler and improved euler method
 
Nonlinear programming 2013
Nonlinear programming 2013Nonlinear programming 2013
Nonlinear programming 2013
 
Church Turing Thesis
Church Turing ThesisChurch Turing Thesis
Church Turing Thesis
 
Artificial Bee Colony algorithm
Artificial Bee Colony algorithmArtificial Bee Colony algorithm
Artificial Bee Colony algorithm
 
Numerical method
Numerical methodNumerical method
Numerical method
 
Steepest descent method
Steepest descent methodSteepest descent method
Steepest descent method
 
Kalman filter for Beginners
Kalman filter for BeginnersKalman filter for Beginners
Kalman filter for Beginners
 
Particle filter
Particle filterParticle filter
Particle filter
 
Monte carlo simulation
Monte carlo simulationMonte carlo simulation
Monte carlo simulation
 
Metaheuristics
MetaheuristicsMetaheuristics
Metaheuristics
 

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

Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...Call Girls in Nagpur High Profile
 
Thermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VThermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VDineshKumar4165
 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptMsecMca
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordAsst.prof M.Gokilavani
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlysanyuktamishra911
 
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoorTop Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoordharasingh5698
 
Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01KreezheaRecto
 
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Standamitlee9823
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Call Girls in Nagpur High Profile
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performancesivaprakash250
 
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Arindam Chakraborty, Ph.D., P.E. (CA, TX)
 
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank  Design by Working Stress - IS Method.pdfIntze Overhead Water Tank  Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank Design by Working Stress - IS Method.pdfSuman Jyoti
 
Design For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startDesign For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startQuintin Balsdon
 
Double Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueDouble Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueBhangaleSonal
 
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Bookingroncy bisnoi
 

Recently uploaded (20)

Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
 
Thermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VThermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - V
 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.ppt
 
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghly
 
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoorTop Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
 
Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01
 
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performance
 
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
 
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
 
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank  Design by Working Stress - IS Method.pdfIntze Overhead Water Tank  Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
 
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
Design For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startDesign For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the start
 
NFPA 5000 2024 standard .
NFPA 5000 2024 standard                                  .NFPA 5000 2024 standard                                  .
NFPA 5000 2024 standard .
 
Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024
 
Double Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueDouble Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torque
 
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
 

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