Course Content
Probability Distributions
Probability Distribution – Binomial, Poisson, Normal, and Exponential
0/3
Facility Location and Layout
Site Selection and Analysis, Layout Design and Process
0/3
Probability Distribution – Binomial, Poisson, Normal, and Exponential
Probability Distribution – Binomial, Poisson, Normal, and Exponential
0/4
Data Collection & Questionnaire Design
Data Collection & Questionnaire Design
Sampling: Concept, Process, and Techniques
Sampling: Concept, Process, and Techniques
0/2
Hypothesis Testing: Procedure
Hypothesis Testing: Procedure
0/2
T, Z, F, Chi-square tests
T, Z, F, Chi-square tests
0/2
Operations Management: Role and Scope
Operations Management: Role and Scope
0/1
Facility Location and Layout: Site Selection and Analysis, Layout Design and Process
Facility Location and Layout: Site Selection and Analysis, Layout Design and Process
Enterprise Resource Planning: ERP Modules, ERP Implementation
Enterprise Resource Planning: ERP Modules, ERP Implementation
Scheduling: Loading, Sequencing, and Monitoring
Scheduling: Loading, Sequencing, and Monitoring
0/4
Quality Management and Statistical Quality Control, Quality Circles, Total Quality Management – KAIZEN, Benchmarking, Six Sigma
Quality Management and Statistical Quality Control, Quality Circles, Total Quality Management – KAIZEN, Benchmarking, Six Sigma
0/3
ISO 9000 Series Standards
ISO 9000 Series Standards
Operation Research: Transportation, Queuing Decision Theory, PERT/CPM.
Operation Research: Transportation, Queuing Decision Theory, PERT/CPM.
0/6
Unit VIII: Business Statistics and Operations Management

📈 What is Linear Regression?

Linear Regression is a statistical method used to model the relationship between a dependent variable (Y) and one or more independent variables (X).

🔹 In Simple Linear Regression:

You’re modeling the relationship between:

  • One independent variable (X)

  • One dependent variable (Y)

The relationship is expressed using a straight line:

Y = a + bX +

  • Y = Dependent variable

  • X = Independent variable

  • a = Intercept (value of Y when X = 0)

  • b = Slope (change in Y for a one-unit change in X)

  • ε = Error term (captures random variations)

Linear Regression helps us estimate the change in Y for one-unit change of x.

🧮 What is Method of Least Squares it?

The Method of Least Squares is a mathematical technique used to find the best-fitting line (or curve) through a set of data points in regression analysis.

Its goal is to minimize the sum of the squares of the errors (called residuals) between the observed values and the values predicted by the regression line.


📈 Used In:

  • Simple Linear Regression
    (One independent variable X, one dependent variable Y)

  • Multiple Regression
    (Multiple X variables predicting a single )


📊 Why is it called “Least Squares”?

Because it minimizes the sum of squared differences between actual and predicted values of the dependent variable:


🔢 Simple Linear Regression Formula:

Y = a + bX

Where:

  • Y = Dependent variable

  • X = Independent variable

  • a = Intercept (value of Y when X = 0)

  • b = Slope (change in Y for each unit change in X)


🔍 How are a and b calculated?

Using the least squares formulas:


Steps to Use Least Squares Method:

  1. Collect X and data.

  2. Calculate ∑X, ∑Y, ∑XY, ∑X2.

  3. Compute slope bb and intercept aa.

  4. Build regression equation: Y^ = a + bX

  5. Use it to predict values or analyze the relationship.


📌 Key Assumptions:

  • Linear relationship between X and Y

  • Homoscedasticity (constant variance of errors)

  • Errors are normally distributed

  • Errors are independent