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

Introduction to optimization technique
Introduction to optimization techniqueIntroduction to optimization technique
Introduction to optimization techniqueKAMINISINGH963
 
Teaching learning based optimization technique
Teaching   learning based optimization techniqueTeaching   learning based optimization technique
Teaching learning based optimization techniqueSmriti Mehta
 
Gradient descent optimizer
Gradient descent optimizerGradient descent optimizer
Gradient descent optimizerHojin Yang
 
Fuzzy Logic ppt
Fuzzy Logic pptFuzzy Logic ppt
Fuzzy Logic pptRitu Bafna
 
Newton raphson method
Newton raphson methodNewton raphson method
Newton raphson methodBijay Mishra
 
Classification of optimization Techniques
Classification of optimization TechniquesClassification of optimization Techniques
Classification of optimization Techniquesshelememosisa
 
Optimization Methods
Optimization MethodsOptimization Methods
Optimization Methodsmetamath
 
Nonlinear programming 2013
Nonlinear programming 2013Nonlinear programming 2013
Nonlinear programming 2013sharifz
 
Methods of Optimization in Machine Learning
Methods of Optimization in Machine LearningMethods of Optimization in Machine Learning
Methods of Optimization in Machine LearningKnoldus Inc.
 
Dimensionality Reduction
Dimensionality ReductionDimensionality Reduction
Dimensionality Reductionmrizwan969
 
Eigen values and eigen vectors engineering
Eigen values and eigen vectors engineeringEigen values and eigen vectors engineering
Eigen values and eigen vectors engineeringshubham211
 
Engineering Numerical Analysis Lecture-1
Engineering Numerical Analysis Lecture-1Engineering Numerical Analysis Lecture-1
Engineering Numerical Analysis Lecture-1Muhammad Waqas
 
Extension principle
Extension principleExtension principle
Extension principleSavo Delić
 

What's hot (20)

Introduction to soft computing
 Introduction to soft computing Introduction to soft computing
Introduction to soft computing
 
Introduction to optimization technique
Introduction to optimization techniqueIntroduction to optimization technique
Introduction to optimization technique
 
Teaching learning based optimization technique
Teaching   learning based optimization techniqueTeaching   learning based optimization technique
Teaching learning based optimization technique
 
Gradient descent optimizer
Gradient descent optimizerGradient descent optimizer
Gradient descent optimizer
 
Fuzzy Logic ppt
Fuzzy Logic pptFuzzy Logic ppt
Fuzzy Logic ppt
 
Fuzzy logic
Fuzzy logicFuzzy logic
Fuzzy logic
 
Newton raphson method
Newton raphson methodNewton raphson method
Newton raphson method
 
Classification of optimization Techniques
Classification of optimization TechniquesClassification of optimization Techniques
Classification of optimization Techniques
 
Fuzzy+logic
Fuzzy+logicFuzzy+logic
Fuzzy+logic
 
Optimization Methods
Optimization MethodsOptimization Methods
Optimization Methods
 
Nonlinear programming 2013
Nonlinear programming 2013Nonlinear programming 2013
Nonlinear programming 2013
 
numerical methods
numerical methodsnumerical methods
numerical methods
 
Deep learning
Deep learningDeep learning
Deep learning
 
Methods of Optimization in Machine Learning
Methods of Optimization in Machine LearningMethods of Optimization in Machine Learning
Methods of Optimization in Machine Learning
 
Dimensionality Reduction
Dimensionality ReductionDimensionality Reduction
Dimensionality Reduction
 
Soft computing
Soft computingSoft computing
Soft computing
 
Eigen values and eigen vectors engineering
Eigen values and eigen vectors engineeringEigen values and eigen vectors engineering
Eigen values and eigen vectors engineering
 
Engineering Numerical Analysis Lecture-1
Engineering Numerical Analysis Lecture-1Engineering Numerical Analysis Lecture-1
Engineering Numerical Analysis Lecture-1
 
Extension principle
Extension principleExtension principle
Extension principle
 
Big m method
Big m methodBig m method
Big m method
 

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

INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEINFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEroselinkalist12
 
Solving The Right Triangles PowerPoint 2.ppt
Solving The Right Triangles PowerPoint 2.pptSolving The Right Triangles PowerPoint 2.ppt
Solving The Right Triangles PowerPoint 2.pptJasonTagapanGulla
 
Class 1 | NFPA 72 | Overview Fire Alarm System
Class 1 | NFPA 72 | Overview Fire Alarm SystemClass 1 | NFPA 72 | Overview Fire Alarm System
Class 1 | NFPA 72 | Overview Fire Alarm Systemirfanmechengr
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024hassan khalil
 
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
 
Instrumentation, measurement and control of bio process parameters ( Temperat...
Instrumentation, measurement and control of bio process parameters ( Temperat...Instrumentation, measurement and control of bio process parameters ( Temperat...
Instrumentation, measurement and control of bio process parameters ( Temperat...121011101441
 
Piping Basic stress analysis by engineering
Piping Basic stress analysis by engineeringPiping Basic stress analysis by engineering
Piping Basic stress analysis by engineeringJuanCarlosMorales19600
 
welding defects observed during the welding
welding defects observed during the weldingwelding defects observed during the welding
welding defects observed during the weldingMuhammadUzairLiaqat
 
US Department of Education FAFSA Week of Action
US Department of Education FAFSA Week of ActionUS Department of Education FAFSA Week of Action
US Department of Education FAFSA Week of ActionMebane Rash
 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfme23b1001
 
Unit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfg
Unit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfgUnit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfg
Unit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfgsaravananr517913
 
Introduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptxIntroduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptxk795866
 
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catchers
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor CatchersTechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catchers
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catcherssdickerson1
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AIabhishek36461
 
An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...Chandu841456
 
8251 universal synchronous asynchronous receiver transmitter
8251 universal synchronous asynchronous receiver transmitter8251 universal synchronous asynchronous receiver transmitter
8251 universal synchronous asynchronous receiver transmitterShivangiSharma879191
 
complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...asadnawaz62
 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionDr.Costas Sachpazis
 
Indian Dairy Industry Present Status and.ppt
Indian Dairy Industry Present Status and.pptIndian Dairy Industry Present Status and.ppt
Indian Dairy Industry Present Status and.pptMadan Karki
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girlsssuser7cb4ff
 

Recently uploaded (20)

INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEINFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
 
Solving The Right Triangles PowerPoint 2.ppt
Solving The Right Triangles PowerPoint 2.pptSolving The Right Triangles PowerPoint 2.ppt
Solving The Right Triangles PowerPoint 2.ppt
 
Class 1 | NFPA 72 | Overview Fire Alarm System
Class 1 | NFPA 72 | Overview Fire Alarm SystemClass 1 | NFPA 72 | Overview Fire Alarm System
Class 1 | NFPA 72 | Overview Fire Alarm System
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024
 
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
 
Instrumentation, measurement and control of bio process parameters ( Temperat...
Instrumentation, measurement and control of bio process parameters ( Temperat...Instrumentation, measurement and control of bio process parameters ( Temperat...
Instrumentation, measurement and control of bio process parameters ( Temperat...
 
Piping Basic stress analysis by engineering
Piping Basic stress analysis by engineeringPiping Basic stress analysis by engineering
Piping Basic stress analysis by engineering
 
welding defects observed during the welding
welding defects observed during the weldingwelding defects observed during the welding
welding defects observed during the welding
 
US Department of Education FAFSA Week of Action
US Department of Education FAFSA Week of ActionUS Department of Education FAFSA Week of Action
US Department of Education FAFSA Week of Action
 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdf
 
Unit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfg
Unit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfgUnit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfg
Unit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfg
 
Introduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptxIntroduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptx
 
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catchers
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor CatchersTechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catchers
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catchers
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AI
 
An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...
 
8251 universal synchronous asynchronous receiver transmitter
8251 universal synchronous asynchronous receiver transmitter8251 universal synchronous asynchronous receiver transmitter
8251 universal synchronous asynchronous receiver transmitter
 
complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...
 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
 
Indian Dairy Industry Present Status and.ppt
Indian Dairy Industry Present Status and.pptIndian Dairy Industry Present Status and.ppt
Indian Dairy Industry Present Status and.ppt
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girls
 

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