SlideShare a Scribd company logo
RV College of
Engineering
Go, change the world
Nivya Muchikel Department of Mathematics
Under the guidance of:
Submitted by: Aadyotya Pandey (1RV22IM002)
Amogh R.N. (1RV22IM007)
Shruti Bhendarkar (1RV22IM043)
OPTIMISATION METHODS
Techniques employed in various domains related to Industrial Engineering & Management
Experiential Learning Phase-1
Go, change the world
2
CONTENTS
• Acknowledgements
• Introduction
• Problem Statement
• Advantages
• Limitations
• Applications
• MATLAB codes
• Conclusion
• References
Thursday 8 August 2024 STATISTICS, LAPLACE TRANSFORM AND NUMERICAL METHODS
Go, change the world
3
ACKNOWLEDGEMENTS
I would like to extend my sincere appreciation to my teachers, Prof. Nivya
Muchikel, Dept. of Mathematics, whose guidance and mentorship have been
invaluable throughout the development of this project.
Your expertise, patience, and encouragement have not only enriched my
understanding but also played a pivotal role in shaping the success of this
endeavor.
Lastly, I take this opportunity to thank our family members and friends who
provided all the backup support throughout the project work.
Thursday 8 August 2024 STATISTICS, LAPLACE TRANSFORM AND NUMERICAL METHODS
Go, change the world
4
INTRODUCTION
• Optimization methods involve systematic approaches to finding the best possible solution from a
set of feasible options, considering multiple objectives, constraints, and trade-offs.
• Optimization techniques and methods are essential tools in Industrial Engineering.
• They aim to improve efficiency, reduce costs, and enhance productivity across operational
domains.
• Optimization involves finding the best solution considering multiple objectives, constraints, and
trade-offs.
• Industrial Engineering focuses on designing, improving, and optimizing systems to achieve
organizational goals effectively and efficiently.
• Optimization and Industrial Engineering share the common goal of maximizing performance within
industrial and organizational settings.
• By leveraging optimization methods, Industrial Engineers can analyze complex systems, optimize
Thursday 8 August 2024 STATISTICS, LAPLACE TRANSFORM AND NUMERICAL METHODS
Go, change the world
5
PROBLEM STATEMENT
• Industrial Engineering and Management struggle with efficiency, cost reduction,
and productivity enhancement.
• Optimization methods are key to solving these challenges.
• Optimization techniques are needed in production planning, inventory
management, supply chain logistics, facility layout design, and scheduling.
• Complex factors like resource constraints and dynamic market demands make
optimization difficult.
• This research aims to develop user-friendly optimization models and decision-
support systems.
• The goal is to help organizations achieve better performance, competitiveness, and
sustainability.
Thursday 8 August 2024 STATISTICS, LAPLACE TRANSFORM AND NUMERICAL METHODS
Go, change the world
6
ADVANTAGES
1. Improved Efficiency: Optimization helps streamline processes, reducing waste and maximizing resource
utilization.
2. Cost Reduction: By optimizing various operations, costs associated with production, inventory, and
logistics can be minimized.
3. Enhanced Productivity: Optimization ensures better allocation of resources and scheduling, leading to
increased output within the same time frame.
4. Better Decision Making: Optimization provides data-driven insights, aiding in strategic decision-making
for resource allocation and capacity planning.
5. Increased Competitiveness: With optimized processes, companies can offer competitive pricing, meet
customer demands efficiently, and gain market advantage.
6. Sustainable Operations: Optimization can help reduce environmental impact by minimizing energy
consumption, waste generation, and carbon footprint.
7. Adaptability to Change: Optimization models can be adjusted to accommodate changes in market
demands, resource availability, or operational constraints.
8. Continuous Improvement: Optimization fosters a culture of continuous improvement by identifying
inefficiencies and implementing iterative enhancements.
Thursday 8 August 2024 STATISTICS, LAPLACE TRANSFORM AND NUMERICAL METHODS
Go, change the world
7
LIMITATIONS
1. Complexity: Some optimization problems may be too complex to model accurately, leading to
oversimplification or unrealistic assumptions.
2. Data Dependency: Optimization relies heavily on accurate and timely data, which may not always
be available or reliable.
3. Computational Intensity: Solving optimization problems computationally can be time-consuming
and resource-intensive, especially for large-scale systems.
4. Resistance to Change: Implementing optimized solutions may face resistance from stakeholders
accustomed to existing processes or hesitant to adopt new technologies.
5. Risk of Overfitting: Optimization models may perform well under specific conditions but fail to
generalize to different scenarios, leading to suboptimal outcomes.
6. Ethical Considerations: Optimization may prioritize certain objectives at the expense of others,
raising ethical concerns regarding fairness, equity, and social responsibility.
7. Lack of Human Judgment: Optimization methods may overlook qualitative factors or intangible
aspects that human judgment considers valuable.
8. Uncertainty and Variability: Optimization solutions may be sensitive to uncertainties in inputs,
market fluctuations, or unforeseen events, leading to suboptimal performance.
Thursday 8 August 2024 STATISTICS, LAPLACE TRANSFORM AND NUMERICAL METHODS
Go, change the world
8
APPLICATIONS
1. Linear Programming (LP):
o Objective: Minimize or maximize a linear objective function subject to linear equality and inequality constraints.
o Example: Optimizing the production plan for a manufacturing facility to maximize profit while satisfying production capacity and
resource constraints.
o MATLAB Function: linprog
2. Non-linear Programming (NLP):
o Objective: Minimize or maximize a nonlinear objective function subject to nonlinear equality and inequality constraints.
o Example: Optimizing the shape of a wing to minimize drag while ensuring lift requirements are met.
o MATLAB Function: fmincon
3. Integer Programming (IP):
o Objective: Similar to linear programming but with the additional requirement that decision variables must take integer values.
o Example: Allocating discrete resources, such as assigning tasks to workers, where tasks cannot be fractionally divided.
o MATLAB Function: intlinprog
Thursday 8 August 2024 STATISTICS, LAPLACE TRANSFORM AND NUMERICAL METHODS
Go, change the world
9
APPLICATIONS
4. Genetic Algorithms (GA):
4. Objective: Find the optimal solution by mimicking the process of natural selection and evolution
5. Example: Optimizing parameters of a neural network for a specific task by evolving a population of potential solutions over
multiple generations.
6. MATLAB Function: ga
5. Quadratic Programming (QP):
o Objective: Minimize or maximize a quadratic objective function subject to linear equality and inequality constraints.
o Example: Portfolio optimization, where the goal is to maximize returns while minimizing risk by selecting a combination of assets.
o MATLAB Function: quadprog
6. Multiobjective Optimization:
o Objective: Optimize multiple conflicting objectives simultaneously.
o Example: Designing a product with competing goals, such as minimizing cost while maximizing performance and reliability.
o MATLAB Function: gamultiobj
Thursday 8 August 2024 STATISTICS, LAPLACE TRANSFORM AND NUMERICAL METHODS
Go, change the world
10
MATLAB CODES
Thursday 8 August 2024
• Linear Programming (LP):
f = [-1; -2; -3];
A = [1 1 1;
-1 2 0;
0 1 -1];
b = [20; 2; 3];
lb = [0; 0; 0];
ub = [];
[x, fval] = linprog(f, A, b, [], [], lb, ub);
• Non-linear Programming (NLP):
fun = @(x) (x(1)-1)^2 + (x(2)-2)^2;
x0 = [0; 0];
[x, fval] = fminunc(fun, x0);
• Integer Programming (IP):
f = [-1; -2; -3];
A = [1 1 1;
-1 2 0;
0 1 -1];
b = [20; 2; 3]; intcon = [1; 2; 3];
[x, fval] = intlinprog(f, intcon, A, b, [], [], lb, ub);
STATISTICS, LAPLACE TRANSFORM AND NUMERICAL METHODS
Go, change the world
11
MATLAB CODES
Thursday 8 August 2024
• Genetic Algorithms (GA):
fitnessFcn = @(x) (x(1)-1)^2 + (x(2)-2)^2;
nvars = 2;
lb = [0; 0];
ub = [];
options = optimoptions('ga', 'Display', 'iter');
[x, fval] = ga(fitnessFcn, nvars, [], [], [], [], lb, ub, [], options);
• Quadratic Programming (QP):
H = [1 -1; -1 2];
f = [-2; -6];
A = [1 1;
-1 2;
2 1];
b = [2; 2; 3];
[x, fval] = quadprog(H, f, A, b);
• Multiobjective Optimization:
fun1 = @(x) x(1)^2 + x(2)^2;
fun2 = @(x) (x(1)-1)^2 + (x(2)-1)^2;
fun = @(x) [fun1(x), fun2(x)];
[x, fval] = fmincon(fun, x0, A, b, [], [], lb, ub);
STATISTICS, LAPLACE TRANSFORM AND NUMERICAL METHODS
Go, change the world
12
CONCLUSION
In conclusion, optimization techniques stand as indispensable tools within the realm
of Industrial Engineering, offering systematic approaches to address challenges,
enhance efficiency, and drive continuous improvement.
Through the alignment of optimization methods with Industrial Engineering
concepts, organizations can achieve greater operational effectiveness, cost savings,
and competitive advantage.
By leveraging optimization, Industrial Engineers can design more efficient processes,
allocate resources effectively, and make informed decisions based on data-driven
insights. As industries continue to evolve and face ever-changing demands, the
integration of optimization techniques will remain crucial for fostering innovation,
sustainability, and success in industrial operations.
Thus, the synergy between optimization methods and Industrial Engineering
principles serves as a cornerstone for achieving excellence in today's dynamic and
competitive business landscape.
Thursday 8 August 2024 STATISTICS, LAPLACE TRANSFORM AND NUMERICAL METHODS
Go, change the world
13
REFERENCES
• "Introduction to Operations Research" by Frederick S. Hillier and Gerald J. Lieberman - This classic textbook covers a wide
range of optimization techniques applicable to industrial engineering and management, including linear programming, integer
programming, and dynamic programming.
• "Applied Optimization with MATLAB Programming" by P. Venkataraman - Focuses on optimization techniques implemented
using MATLAB, with applications in engineering and management, including linear programming, nonlinear programming, and
evolutionary algorithms.
• "Optimization Models for Production Planning in Advanced Manufacturing Systems: A Review" by Andrea Matta, Marco
Sgarbossa, and Mauro Gamberi. (Published in the International Journal of Production Research) - Provides an overview of
optimization models and techniques used in production planning for advanced manufacturing systems.
• "Multi-objective optimization in engineering design: Current status and future opportunities" by C. Mavrotas. (Published in
Structural and Multidisciplinary Optimization) - Discusses multi-objective optimization techniques and their applications in
engineering design, including industrial engineering.
• "Recent developments in optimization methods for supply chain management" by Xiaolin Li and Frank Y. Chen. (Published in
Engineering Applications of Artificial Intelligence) - Reviews recent developments in optimization methods for supply chain
management, offering insights into their applicability in industrial engineering and management.
• "A review on applications of mathematical programming models in scheduling, routing and distribution of logistics and
transportation operations" by Fatma Gzara and Sana Belmokhtar. (Published in Computers & Industrial Engineering) -
Provides a comprehensive review of mathematical programming models applied in scheduling, routing, and distribution
optimization within logistics and transportation operations, with implications for industrial engineering and management.
Thursday 8 August 2024 STATISTICS, LAPLACE TRANSFORM AND NUMERICAL METHODS
Go, change the world
14
Thursday 8 August 2024 STATISTICS, LAPLACE TRANSFORM AND NUMERICAL METHODS

More Related Content

PPTX
its a week one full detailed lecture in this file
PDF
Computational Optimization, Modelling and Simulation: Recent Trends and Chall...
PDF
Computational optimization, modelling and simulation: Recent advances and ove...
PDF
PPT
Modeling and optimizing the offshore oil production of oil and gas under unce...
PDF
Dj4201737746
PPTX
JamieStainer ATA SCIEnCE path finder.pptx
PPTX
AI AND DATA SCIENCE generative data scinece.pptx
its a week one full detailed lecture in this file
Computational Optimization, Modelling and Simulation: Recent Trends and Chall...
Computational optimization, modelling and simulation: Recent advances and ove...
Modeling and optimizing the offshore oil production of oil and gas under unce...
Dj4201737746
JamieStainer ATA SCIEnCE path finder.pptx
AI AND DATA SCIENCE generative data scinece.pptx

Similar to optimisation methods techniques industrial (20)

DOCX
Complete book
PPTX
Aminullah Assagaf_P4-Ch.6_Processes and technology-32.pptx
PPTX
RVCE Template.pptx
PDF
5 analytic hierarchy_process
 
PDF
analytic hierarchy_process
 
PDF
Chapter_6_Prescriptive_Analytics_Optimization_and_Simulation.pptx.pdf
PPTX
Agile analytics : An exploratory study of technical complexity management
PDF
Sca a sine cosine algorithm for solving optimization problems
PPTX
PowerPoint_mqergsqsqsqsqsqswqse (1).pptx
PPTX
Lecture 2 Basic Concepts of Optimal Design and Optimization Techniques final1...
PDF
Advanced Optimization for the Enterprise Webinar
PDF
Foundational Methodology for Data Science
PPTX
How to solve problems (or at least try) with 8D
PDF
Ds for finance day 3
PDF
Building successful and secure products with AI and ML
PDF
Mech vii-operation research [06 me74]-notes
PPT
Operations Research - An Analytic Tool for a Researcher.ppt
PDF
Data Science at Udemy
PPTX
Operation research and its application
PPTX
Operations-research in quantitative math
Complete book
Aminullah Assagaf_P4-Ch.6_Processes and technology-32.pptx
RVCE Template.pptx
5 analytic hierarchy_process
 
analytic hierarchy_process
 
Chapter_6_Prescriptive_Analytics_Optimization_and_Simulation.pptx.pdf
Agile analytics : An exploratory study of technical complexity management
Sca a sine cosine algorithm for solving optimization problems
PowerPoint_mqergsqsqsqsqsqswqse (1).pptx
Lecture 2 Basic Concepts of Optimal Design and Optimization Techniques final1...
Advanced Optimization for the Enterprise Webinar
Foundational Methodology for Data Science
How to solve problems (or at least try) with 8D
Ds for finance day 3
Building successful and secure products with AI and ML
Mech vii-operation research [06 me74]-notes
Operations Research - An Analytic Tool for a Researcher.ppt
Data Science at Udemy
Operation research and its application
Operations-research in quantitative math
Ad

Recently uploaded (20)

PDF
Unit I ESSENTIAL OF DIGITAL MARKETING.pdf
PDF
Human-AI Collaboration: Balancing Agentic AI and Autonomy in Hybrid Systems
PDF
The CXO Playbook 2025 – Future-Ready Strategies for C-Suite Leaders Cerebrai...
PDF
BIO-INSPIRED HORMONAL MODULATION AND ADAPTIVE ORCHESTRATION IN S-AI-GPT
PPTX
Construction Project Organization Group 2.pptx
PDF
R24 SURVEYING LAB MANUAL for civil enggi
PPTX
Safety Seminar civil to be ensured for safe working.
PPTX
Geodesy 1.pptx...............................................
PDF
III.4.1.2_The_Space_Environment.p pdffdf
PDF
null (2) bgfbg bfgb bfgb fbfg bfbgf b.pdf
PPTX
UNIT 4 Total Quality Management .pptx
PPTX
6ME3A-Unit-II-Sensors and Actuators_Handouts.pptx
PPT
Introduction, IoT Design Methodology, Case Study on IoT System for Weather Mo...
PPTX
additive manufacturing of ss316l using mig welding
PDF
Level 2 – IBM Data and AI Fundamentals (1)_v1.1.PDF
PDF
BMEC211 - INTRODUCTION TO MECHATRONICS-1.pdf
PPTX
Fundamentals of safety and accident prevention -final (1).pptx
PDF
A SYSTEMATIC REVIEW OF APPLICATIONS IN FRAUD DETECTION
PDF
Categorization of Factors Affecting Classification Algorithms Selection
DOCX
573137875-Attendance-Management-System-original
Unit I ESSENTIAL OF DIGITAL MARKETING.pdf
Human-AI Collaboration: Balancing Agentic AI and Autonomy in Hybrid Systems
The CXO Playbook 2025 – Future-Ready Strategies for C-Suite Leaders Cerebrai...
BIO-INSPIRED HORMONAL MODULATION AND ADAPTIVE ORCHESTRATION IN S-AI-GPT
Construction Project Organization Group 2.pptx
R24 SURVEYING LAB MANUAL for civil enggi
Safety Seminar civil to be ensured for safe working.
Geodesy 1.pptx...............................................
III.4.1.2_The_Space_Environment.p pdffdf
null (2) bgfbg bfgb bfgb fbfg bfbgf b.pdf
UNIT 4 Total Quality Management .pptx
6ME3A-Unit-II-Sensors and Actuators_Handouts.pptx
Introduction, IoT Design Methodology, Case Study on IoT System for Weather Mo...
additive manufacturing of ss316l using mig welding
Level 2 – IBM Data and AI Fundamentals (1)_v1.1.PDF
BMEC211 - INTRODUCTION TO MECHATRONICS-1.pdf
Fundamentals of safety and accident prevention -final (1).pptx
A SYSTEMATIC REVIEW OF APPLICATIONS IN FRAUD DETECTION
Categorization of Factors Affecting Classification Algorithms Selection
573137875-Attendance-Management-System-original
Ad

optimisation methods techniques industrial

  • 1. RV College of Engineering Go, change the world Nivya Muchikel Department of Mathematics Under the guidance of: Submitted by: Aadyotya Pandey (1RV22IM002) Amogh R.N. (1RV22IM007) Shruti Bhendarkar (1RV22IM043) OPTIMISATION METHODS Techniques employed in various domains related to Industrial Engineering & Management Experiential Learning Phase-1
  • 2. Go, change the world 2 CONTENTS • Acknowledgements • Introduction • Problem Statement • Advantages • Limitations • Applications • MATLAB codes • Conclusion • References Thursday 8 August 2024 STATISTICS, LAPLACE TRANSFORM AND NUMERICAL METHODS
  • 3. Go, change the world 3 ACKNOWLEDGEMENTS I would like to extend my sincere appreciation to my teachers, Prof. Nivya Muchikel, Dept. of Mathematics, whose guidance and mentorship have been invaluable throughout the development of this project. Your expertise, patience, and encouragement have not only enriched my understanding but also played a pivotal role in shaping the success of this endeavor. Lastly, I take this opportunity to thank our family members and friends who provided all the backup support throughout the project work. Thursday 8 August 2024 STATISTICS, LAPLACE TRANSFORM AND NUMERICAL METHODS
  • 4. Go, change the world 4 INTRODUCTION • Optimization methods involve systematic approaches to finding the best possible solution from a set of feasible options, considering multiple objectives, constraints, and trade-offs. • Optimization techniques and methods are essential tools in Industrial Engineering. • They aim to improve efficiency, reduce costs, and enhance productivity across operational domains. • Optimization involves finding the best solution considering multiple objectives, constraints, and trade-offs. • Industrial Engineering focuses on designing, improving, and optimizing systems to achieve organizational goals effectively and efficiently. • Optimization and Industrial Engineering share the common goal of maximizing performance within industrial and organizational settings. • By leveraging optimization methods, Industrial Engineers can analyze complex systems, optimize Thursday 8 August 2024 STATISTICS, LAPLACE TRANSFORM AND NUMERICAL METHODS
  • 5. Go, change the world 5 PROBLEM STATEMENT • Industrial Engineering and Management struggle with efficiency, cost reduction, and productivity enhancement. • Optimization methods are key to solving these challenges. • Optimization techniques are needed in production planning, inventory management, supply chain logistics, facility layout design, and scheduling. • Complex factors like resource constraints and dynamic market demands make optimization difficult. • This research aims to develop user-friendly optimization models and decision- support systems. • The goal is to help organizations achieve better performance, competitiveness, and sustainability. Thursday 8 August 2024 STATISTICS, LAPLACE TRANSFORM AND NUMERICAL METHODS
  • 6. Go, change the world 6 ADVANTAGES 1. Improved Efficiency: Optimization helps streamline processes, reducing waste and maximizing resource utilization. 2. Cost Reduction: By optimizing various operations, costs associated with production, inventory, and logistics can be minimized. 3. Enhanced Productivity: Optimization ensures better allocation of resources and scheduling, leading to increased output within the same time frame. 4. Better Decision Making: Optimization provides data-driven insights, aiding in strategic decision-making for resource allocation and capacity planning. 5. Increased Competitiveness: With optimized processes, companies can offer competitive pricing, meet customer demands efficiently, and gain market advantage. 6. Sustainable Operations: Optimization can help reduce environmental impact by minimizing energy consumption, waste generation, and carbon footprint. 7. Adaptability to Change: Optimization models can be adjusted to accommodate changes in market demands, resource availability, or operational constraints. 8. Continuous Improvement: Optimization fosters a culture of continuous improvement by identifying inefficiencies and implementing iterative enhancements. Thursday 8 August 2024 STATISTICS, LAPLACE TRANSFORM AND NUMERICAL METHODS
  • 7. Go, change the world 7 LIMITATIONS 1. Complexity: Some optimization problems may be too complex to model accurately, leading to oversimplification or unrealistic assumptions. 2. Data Dependency: Optimization relies heavily on accurate and timely data, which may not always be available or reliable. 3. Computational Intensity: Solving optimization problems computationally can be time-consuming and resource-intensive, especially for large-scale systems. 4. Resistance to Change: Implementing optimized solutions may face resistance from stakeholders accustomed to existing processes or hesitant to adopt new technologies. 5. Risk of Overfitting: Optimization models may perform well under specific conditions but fail to generalize to different scenarios, leading to suboptimal outcomes. 6. Ethical Considerations: Optimization may prioritize certain objectives at the expense of others, raising ethical concerns regarding fairness, equity, and social responsibility. 7. Lack of Human Judgment: Optimization methods may overlook qualitative factors or intangible aspects that human judgment considers valuable. 8. Uncertainty and Variability: Optimization solutions may be sensitive to uncertainties in inputs, market fluctuations, or unforeseen events, leading to suboptimal performance. Thursday 8 August 2024 STATISTICS, LAPLACE TRANSFORM AND NUMERICAL METHODS
  • 8. Go, change the world 8 APPLICATIONS 1. Linear Programming (LP): o Objective: Minimize or maximize a linear objective function subject to linear equality and inequality constraints. o Example: Optimizing the production plan for a manufacturing facility to maximize profit while satisfying production capacity and resource constraints. o MATLAB Function: linprog 2. Non-linear Programming (NLP): o Objective: Minimize or maximize a nonlinear objective function subject to nonlinear equality and inequality constraints. o Example: Optimizing the shape of a wing to minimize drag while ensuring lift requirements are met. o MATLAB Function: fmincon 3. Integer Programming (IP): o Objective: Similar to linear programming but with the additional requirement that decision variables must take integer values. o Example: Allocating discrete resources, such as assigning tasks to workers, where tasks cannot be fractionally divided. o MATLAB Function: intlinprog Thursday 8 August 2024 STATISTICS, LAPLACE TRANSFORM AND NUMERICAL METHODS
  • 9. Go, change the world 9 APPLICATIONS 4. Genetic Algorithms (GA): 4. Objective: Find the optimal solution by mimicking the process of natural selection and evolution 5. Example: Optimizing parameters of a neural network for a specific task by evolving a population of potential solutions over multiple generations. 6. MATLAB Function: ga 5. Quadratic Programming (QP): o Objective: Minimize or maximize a quadratic objective function subject to linear equality and inequality constraints. o Example: Portfolio optimization, where the goal is to maximize returns while minimizing risk by selecting a combination of assets. o MATLAB Function: quadprog 6. Multiobjective Optimization: o Objective: Optimize multiple conflicting objectives simultaneously. o Example: Designing a product with competing goals, such as minimizing cost while maximizing performance and reliability. o MATLAB Function: gamultiobj Thursday 8 August 2024 STATISTICS, LAPLACE TRANSFORM AND NUMERICAL METHODS
  • 10. Go, change the world 10 MATLAB CODES Thursday 8 August 2024 • Linear Programming (LP): f = [-1; -2; -3]; A = [1 1 1; -1 2 0; 0 1 -1]; b = [20; 2; 3]; lb = [0; 0; 0]; ub = []; [x, fval] = linprog(f, A, b, [], [], lb, ub); • Non-linear Programming (NLP): fun = @(x) (x(1)-1)^2 + (x(2)-2)^2; x0 = [0; 0]; [x, fval] = fminunc(fun, x0); • Integer Programming (IP): f = [-1; -2; -3]; A = [1 1 1; -1 2 0; 0 1 -1]; b = [20; 2; 3]; intcon = [1; 2; 3]; [x, fval] = intlinprog(f, intcon, A, b, [], [], lb, ub); STATISTICS, LAPLACE TRANSFORM AND NUMERICAL METHODS
  • 11. Go, change the world 11 MATLAB CODES Thursday 8 August 2024 • Genetic Algorithms (GA): fitnessFcn = @(x) (x(1)-1)^2 + (x(2)-2)^2; nvars = 2; lb = [0; 0]; ub = []; options = optimoptions('ga', 'Display', 'iter'); [x, fval] = ga(fitnessFcn, nvars, [], [], [], [], lb, ub, [], options); • Quadratic Programming (QP): H = [1 -1; -1 2]; f = [-2; -6]; A = [1 1; -1 2; 2 1]; b = [2; 2; 3]; [x, fval] = quadprog(H, f, A, b); • Multiobjective Optimization: fun1 = @(x) x(1)^2 + x(2)^2; fun2 = @(x) (x(1)-1)^2 + (x(2)-1)^2; fun = @(x) [fun1(x), fun2(x)]; [x, fval] = fmincon(fun, x0, A, b, [], [], lb, ub); STATISTICS, LAPLACE TRANSFORM AND NUMERICAL METHODS
  • 12. Go, change the world 12 CONCLUSION In conclusion, optimization techniques stand as indispensable tools within the realm of Industrial Engineering, offering systematic approaches to address challenges, enhance efficiency, and drive continuous improvement. Through the alignment of optimization methods with Industrial Engineering concepts, organizations can achieve greater operational effectiveness, cost savings, and competitive advantage. By leveraging optimization, Industrial Engineers can design more efficient processes, allocate resources effectively, and make informed decisions based on data-driven insights. As industries continue to evolve and face ever-changing demands, the integration of optimization techniques will remain crucial for fostering innovation, sustainability, and success in industrial operations. Thus, the synergy between optimization methods and Industrial Engineering principles serves as a cornerstone for achieving excellence in today's dynamic and competitive business landscape. Thursday 8 August 2024 STATISTICS, LAPLACE TRANSFORM AND NUMERICAL METHODS
  • 13. Go, change the world 13 REFERENCES • "Introduction to Operations Research" by Frederick S. Hillier and Gerald J. Lieberman - This classic textbook covers a wide range of optimization techniques applicable to industrial engineering and management, including linear programming, integer programming, and dynamic programming. • "Applied Optimization with MATLAB Programming" by P. Venkataraman - Focuses on optimization techniques implemented using MATLAB, with applications in engineering and management, including linear programming, nonlinear programming, and evolutionary algorithms. • "Optimization Models for Production Planning in Advanced Manufacturing Systems: A Review" by Andrea Matta, Marco Sgarbossa, and Mauro Gamberi. (Published in the International Journal of Production Research) - Provides an overview of optimization models and techniques used in production planning for advanced manufacturing systems. • "Multi-objective optimization in engineering design: Current status and future opportunities" by C. Mavrotas. (Published in Structural and Multidisciplinary Optimization) - Discusses multi-objective optimization techniques and their applications in engineering design, including industrial engineering. • "Recent developments in optimization methods for supply chain management" by Xiaolin Li and Frank Y. Chen. (Published in Engineering Applications of Artificial Intelligence) - Reviews recent developments in optimization methods for supply chain management, offering insights into their applicability in industrial engineering and management. • "A review on applications of mathematical programming models in scheduling, routing and distribution of logistics and transportation operations" by Fatma Gzara and Sana Belmokhtar. (Published in Computers & Industrial Engineering) - Provides a comprehensive review of mathematical programming models applied in scheduling, routing, and distribution optimization within logistics and transportation operations, with implications for industrial engineering and management. Thursday 8 August 2024 STATISTICS, LAPLACE TRANSFORM AND NUMERICAL METHODS
  • 14. Go, change the world 14 Thursday 8 August 2024 STATISTICS, LAPLACE TRANSFORM AND NUMERICAL METHODS