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

PDF
Evolutionary computation 5773-lecture03-Fall24 (8-23-24).pdf
PDF
VET4SBO Level 2 module 2 - unit 1 - v1.0 en
PDF
CompEng - Lec01 - Introduction To Optimum Design.pdf
PPTX
Introduction to mathematical optimization
PDF
Review of Hooke and Jeeves Direct Search Solution Method Analysis Applicable ...
PPTX
Lecture 2 Basic Concepts of Optimal Design and Optimization Techniques final1...
PDF
Fundamentals of Genetic Algorithms (Soft Computing)
PDF
Progr dinamica de_vazut
Evolutionary computation 5773-lecture03-Fall24 (8-23-24).pdf
VET4SBO Level 2 module 2 - unit 1 - v1.0 en
CompEng - Lec01 - Introduction To Optimum Design.pdf
Introduction to mathematical optimization
Review of Hooke and Jeeves Direct Search Solution Method Analysis Applicable ...
Lecture 2 Basic Concepts of Optimal Design and Optimization Techniques final1...
Fundamentals of Genetic Algorithms (Soft Computing)
Progr dinamica de_vazut

Similar to Optimisation methods- techniques employed in various domain of industrial engineering and management (20)

PPT
CN.ppt
PDF
Optimization Problems Solved by Different Platforms Say Optimum Tool Box (Mat...
PPTX
Algorithm For optimization.pptx
PDF
65487681 60444264-engineering-optimization-theory-and-practice-4th-edition
PDF
1.1optimization.pdf;;;khgggggggggggghhjj
PPTX
1.1optimization concepts in engineering.pptx
PDF
Numerical analysis m1 learning objectives
PDF
PDF
Model-Based User Interface Optimization: Part I INTRODUCTION - At SICSA Summe...
PDF
Optimization and Mechanical Design_ Crimson Publishers
PDF
Computational optimization, modelling and simulation: Recent advances and ove...
PDF
CI L11 Optimization 3 GlobalOptimization.pdf
PPTX
Basics of optimization technique for engineers
PPT
CH1.ppt
PDF
Numerical analysis historicl devpt
PDF
Optimization Techniques.pdf
PDF
Multi-Objective Optimization using Non-Dominated Sorting Genetic Algorithm wi...
PDF
Bertimas
PDF
Classification of optimization Techniques
CN.ppt
Optimization Problems Solved by Different Platforms Say Optimum Tool Box (Mat...
Algorithm For optimization.pptx
65487681 60444264-engineering-optimization-theory-and-practice-4th-edition
1.1optimization.pdf;;;khgggggggggggghhjj
1.1optimization concepts in engineering.pptx
Numerical analysis m1 learning objectives
Model-Based User Interface Optimization: Part I INTRODUCTION - At SICSA Summe...
Optimization and Mechanical Design_ Crimson Publishers
Computational optimization, modelling and simulation: Recent advances and ove...
CI L11 Optimization 3 GlobalOptimization.pdf
Basics of optimization technique for engineers
CH1.ppt
Numerical analysis historicl devpt
Optimization Techniques.pdf
Multi-Objective Optimization using Non-Dominated Sorting Genetic Algorithm wi...
Bertimas
Classification of optimization Techniques
Ad

Recently uploaded (20)

PDF
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
PPTX
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
PDF
3rd Neelam Sanjeevareddy Memorial Lecture.pdf
PDF
2.FourierTransform-ShortQuestionswithAnswers.pdf
PPTX
Introduction to Child Health Nursing – Unit I | Child Health Nursing I | B.Sc...
PDF
FourierSeries-QuestionsWithAnswers(Part-A).pdf
PDF
Basic Mud Logging Guide for educational purpose
PDF
STATICS OF THE RIGID BODIES Hibbelers.pdf
PDF
Mark Klimek Lecture Notes_240423 revision books _173037.pdf
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PDF
O7-L3 Supply Chain Operations - ICLT Program
PPTX
master seminar digital applications in india
PDF
Anesthesia in Laparoscopic Surgery in India
PPTX
The Healthy Child – Unit II | Child Health Nursing I | B.Sc Nursing 5th Semester
PDF
01-Introduction-to-Information-Management.pdf
PDF
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
PDF
102 student loan defaulters named and shamed – Is someone you know on the list?
PDF
Business Ethics Teaching Materials for college
PPTX
PPH.pptx obstetrics and gynecology in nursing
PDF
Supply Chain Operations Speaking Notes -ICLT Program
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
3rd Neelam Sanjeevareddy Memorial Lecture.pdf
2.FourierTransform-ShortQuestionswithAnswers.pdf
Introduction to Child Health Nursing – Unit I | Child Health Nursing I | B.Sc...
FourierSeries-QuestionsWithAnswers(Part-A).pdf
Basic Mud Logging Guide for educational purpose
STATICS OF THE RIGID BODIES Hibbelers.pdf
Mark Klimek Lecture Notes_240423 revision books _173037.pdf
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
O7-L3 Supply Chain Operations - ICLT Program
master seminar digital applications in india
Anesthesia in Laparoscopic Surgery in India
The Healthy Child – Unit II | Child Health Nursing I | B.Sc Nursing 5th Semester
01-Introduction-to-Information-Management.pdf
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
102 student loan defaulters named and shamed – Is someone you know on the list?
Business Ethics Teaching Materials for college
PPH.pptx obstetrics and gynecology in nursing
Supply Chain Operations Speaking Notes -ICLT Program
Ad

Optimisation methods- techniques employed in various domain of industrial engineering and management

  • 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