Unit 1: Numbers, Quantification and Numerical Applications
Introduction
In this unit, we explore advanced concepts of modulo arithmetic, congruence modulo, basic mathematical applications like alligation, mixtures, boats and streams, pipelines, races, and numerical inequalities. Understanding these concepts is fundamental to applied mathematics and various competitive examinations.
Modulo Arithmetic and Congruence
Modulo operator refers to the remainder of a division operation. If we have two integers \(a\) and \(n\) (with \(n > 0\)), then \(a \pmod n\) is the remainder when \(a\) is divided by \(n\).
\[ a \equiv b \pmod n \implies n \mid (a - b) \]
This means that \(a\) and \(b\) leave the same remainder when divided by \(n\).
Example of Congruence Modulo
Let’s check if \( 38 \equiv 14 \pmod{12} \). Since \( 38 - 14 = 24 \), and \( 24 \) is divisible by \( 12 \) (\( 24 = 12 \times 2 \)), the congruence holds true.
Alligation and Mixture
Alligation is a rule that enables us to find the ratio in which two or more ingredients at a given price must be mixed to produce a mixture of a desired price.
Numerical Problems
Boats and Streams
When a boat moves in the direction of the stream, it is called downstream, and when it moves against the stream, it is called upstream.
Let the speed of the boat in still water be \(u\) km/hr and the speed of the stream be \(v\) km/hr. Then:
- Speed Downstream = \( (u + v) \) km/hr
- Speed Upstream = \( (u - v) \) km/hr
Competency-Based Questions
Q1. The time shown on a 12-hour clock modulo 12 can be thought of as a congruence class. If it is currently 8:00 AM, what time will it be in 137 hours?
- Calculate \( 137 \pmod{12} \).
- Add the remainder to the current time.
Q2. Two types of rice costing ₹ 45/kg and ₹ 60/kg are mixed together. At what ratio must they be mixed to have a mixture worth ₹ 54/kg?
- Apply the rule of alligation where \( C = 45 \), \( D = 60 \), and \( M = 54 \).
- Analyze the ratio \( \frac{D - M}{M - C} \).
Q3. A pipe can fill a cistern in 10 hours, and another pipe can empty it in 15 hours. If both pipes are opened simultaneously, when will the cistern be full?
- Determine the net work done in an hour.
- Formulate the equation mathematically to find the total time.
Q4. Compare the performance: Athlete A completes a 400m race in 45 seconds, while Athlete B completes it in 48 seconds. If they both maintain their speeds, what would be the distance of Athlete B from the finish line when Athlete A completes the race?
Answers
Ans 1. 137 mod 12 = 5. Currently 8:00 AM + 5 hours = 1:00 PM.
Ans 2. Using alligation: \( \frac{D - M}{M - C} = \frac{60 - 54}{54 - 45} = \frac{6}{9} = 2:3 \).
Ans 3. Net work in an hour = \( \frac{1}{10} - \frac{1}{15} = \frac{3 - 2}{30} = \frac{1}{30} \). Therefore, it takes 30 hours to fill the cistern.
Ans 4. Speed of A = \( \frac{400}{45} \) m/s. Speed of B = \( \frac{400}{48} \) m/s. When A completes 400m (45s), distance of B = \( \frac{400}{48} \times 45 = 375 \)m. So B is 25m from the finish line.
Unit 2: Algebra
Introduction to Matrices
A matrix is an ordered rectangular array of numbers or functions. The numbers or functions are called the elements or the entries of the matrix. A matrix having \(m\) rows and \(n\) columns is called a matrix of order \(m \times n\).
Types of Matrices
- Column Matrix: A matrix having only one column.
- Row Matrix: A matrix having only one row.
- Square Matrix: A matrix in which the number of rows is equal to the number of columns (\(m = n\)).
- Diagonal Matrix: A square matrix where all non-diagonal elements are zero.
Algebra of Matrices
Addition and Subtraction
Two matrices can be added or subtracted if and only if they have the same order.
\[ A = \begin{bmatrix} a_{11} & a_{12} \ a_{21} & a_{22} \end{bmatrix}, \quad B = \begin{bmatrix} b_{11} & b_{12} \ b_{21} & b_{22} \end{bmatrix} \]
\[ A + B = \begin{bmatrix} a_{11} + b_{11} & a_{12} + b_{12} \ a_{21} + b_{21} & a_{22} + b_{22} \end{bmatrix} \]
Multiplication
The product of two matrices \(A\) and \(B\) is defined if the number of columns of \(A\) is equal to the number of rows of \(B\).
Determinants and Inverses
For any square matrix \(A\) of order \(n\), we associate a number (real or complex) called its determinant, denoted by \(|A|\) or \(\det(A)\).
A square matrix \(A\) is invertible if and only if \(A\) is a non-singular matrix (\(|A| \neq 0\)).
\[ A^{-1} = \frac{1}{|A|} \text{adj}(A) \]
System of Linear Equations
Using matrices, we can solve systems of simultaneous linear equations with the form \(AX = B\), giving the solution \(X = A^{-1}B\).
Competency-Based Questions
Q1. A firm produces three products, \(P_1\), \(P_2\), and \(P_3\), which require raw materials \(R_1\) and \(R_2\). Formulate a matrix representation showing the raw material requirements for producing 100 units of each product.
Q2. Suppose the supply chain function of a company can be transformed using the operation \( AB = C \). If \( A \) is a \( 3 \times 2 \) matrix representing supply routes and \( B \) is a \( 2 \times 4 \) matrix representing capacities, determine the dimensions of the output matrix \(C\) and interpret its meaning in a real-world scenario.
Q3. Solve the following system of linear equations using the matrix method to deduce the equilibrium prices for three commodities: \[ 2x + y + z = 1 \ x - 2y - z = \frac{3}{2} \ 3y - 5z = 9 \]
Q4. A school needs to allocate resources equally among its sports, arts, and science departments based on a matrix of their budgets. Explain why an inverse matrix might not exist for the budget allocation matrix if all departments exactly mirror the budget ratios of the principal fund.
Answers
Ans 1. Let \( R \) be the \( 2 \times 3 \) matrix of raw materials per product. Then requirement matrix \( M = R \times \begin{bmatrix} 100 \ 100 \ 100 \end{bmatrix} \).
Ans 2. \( C \) is a \( 3 \times 4 \) matrix. In a supply chain, it might represent the total supply capacity distribution taking into account 3 sets of routes to 4 different processing or warehouse nodes.
Ans 3. The determinant \( |A| = -17 \). Using \( X = A^{-1}B \), the solution resolves to \( x=1, y=2, z=-3 \). (Assuming typical equilibrium problem, standard inverses apply).
Ans 4. If the departments mirror the principal fund’s budget ratios, the rows of the budget matrix will be proportional (linearly dependent). This makes the determinant zero, meaning the matrix is singular and its inverse does not exist.
Unit 3: Calculus
Differentiation and its Applications
Differentiation is the process of finding the derivative of a function. For a function \( y = f(x) \), its derivative \( f’(x) \) or \( \frac{dy}{dx} \) is defined as:
\[ f’(x) = \lim_{\Delta x \to 0} \frac{f(x + \Delta x) - f(x)}{\Delta x} \]
Maxima and Minima
A common application of derivatives is finding the local maximum and minimum values of a function.
- Find the first derivative \( f’(x) \).
- Set \( f’(x) = 0 \) to find the critical points.
- Use the second derivative test \( f’‘(x) \) to determine if it is a maximum (\( f’‘(x) < 0 \)) or minimum (\( f’’(x) > 0 \)).
Integration and its Applications
Integration is the reverse process of differentiation. The indefinite integral of a function represents a family of curves, while the definite integral gives the area under a curve.
\[ \int f(x) dx = F(x) + C \] where \( F’(x) = f(x) \).
Consumer and Producer Surplus
- Consumer Surplus: Area representing the difference between what consumers are willing to pay and what they actually pay.
- Producer Surplus: Area representing the difference between the actual price and the minimum price at which producers are willing to supply the good.
\[ CS = \int_{0}^{x_0} f(x) dx - p_0 \cdot x_0 \]
Differential Equations
A differential equation contains the derivative of an unknown function. We solve simple differential equations using the Variable Separable Method.
Competency-Based Questions
Q1. A company calculates that its marginal cost for producing \( x \) units is \( MC(x) = 3x^2 - 10x + 5 \). Find the total cost function \( C(x) \) if the fixed cost is ₹ 500. Formulate the differential equation and solve it.
Q2. The equilibrium price and quantity for a commodity are ₹ 15 and 200 units, respectively. The demand function is given by \( p = 35 - 0.1x \). Calculate the consumer surplus at the point of market equilibrium.
Q3. A population model predicts that the rate of change of the population \( P \) with respect to time \( t \) is proportional to \( P \). Write down the differential equation governing this growth. If initially the population is 10,000 and it doubles in 5 years, determine the population after 10 years using integration.
Q4. A firm’s revenue function is \( R(x) = -2x^2 + 400x \). Evaluate the quantity \( x \) that maximizes the revenue. Plot the graph and show the maxima point.
Answers
Ans 1. \( C(x) = \int (3x^2 - 10x + 5) dx = x^3 - 5x^2 + 5x + C_1 \). Since fixed cost \( C(0) = 500 \), \( C_1 = 500 \). So \( C(x) = x^3 - 5x^2 + 5x + 500 \).
Ans 2. Consumer Surplus \( = \int_0^{200} (35 - 0.1x) dx - (15 \times 200) = [35x - 0.05x^2]_0^{200} - 3000 = (7000 - 2000) - 3000 = 2000 \). CS is ₹ 2,000.
Ans 3. Diff. Equation: \( \frac{dP}{dt} = kP \). Solving gives \( P(t) = P_0 e^{kt} \). If it doubles in 5 years, in 10 years it doubles twice, meaning \( 10000 \times 4 = 40,000 \).
Ans 4. Find derivative: \( R’(x) = -4x + 400 \). Setting to 0 gives \( x = 100 \). Second derivative \( R’’(x) = -4 < 0 \), confirming it’s a maxima.
Unit 4: Probability Distributions
Introduction
A random variable is a real-valued function whose domain is the sample space of a random experiment. It can be discrete (taking countable values) or continuous (taking uncountably many values in an interval).
Mathematical Expectation
The expected value representing the weighted average of all possible values. For a discrete random variable \( X \):
\[ E(X) = \sum x_i P(X = x_i) \]
The variance, measuring the spread of the data, is given by:
\[ \operatorname{Var}(X) = E(X^2) - [E(X)]^2 \]
Important Distributions
1. Binomial Distribution
A distribution resulting from \( n \) independent Bernoulli trials, each with probability of success \( p \).
\[ P(X = r) = \binom{n}{r} p^r q^{n-r} \] where \( q = 1 - p \).
- Mean = \( np \)
- Variance = \( npq \)
2. Poisson Distribution
Applied to processes where events occur randomly in a continuous space or time. Used when \( n \) is very large and \( p \) is very small.
\[ P(X = x) = \frac{\lambda^x e^{-\lambda}}{x!} \] where \( \lambda \) is the mean number of occurrences.
3. Normal Distribution
A continuous symmetric distribution forming a classic bell curve.
The standard normal variate is defined as: \[ Z = \frac{X - \mu}{\sigma} \]
Competency-Based Questions
Q1. The probability of predicting the correct outcome of a match is 0.4. If a sports analyst predicts 10 matches, find the probability of exactly 6 correct predictions using the Binomial Distribution formula.
Q2. An insurance call center receives on average 3 calls per minute. Apply the Poisson distribution to determine the probability that in any given minute, they will receive exactly 5 calls. (Given \( e^{-3} = 0.0498 \))
Q3. The scores of a competitive exam form a normal distribution with a mean of 60 and a standard deviation of 12. Determine the percentage of candidates who scored above 84. (Assume standard normal table values for \( Z \)).
Q4. Let \( X \) be a discrete random variable signifying the number of defective computers in a batch of 4. Calculate the expected value \( E(X) \) and variance of the defectives if the probability of encountering a defective computer is 10%.
Answers
Ans 1. \( n=10, p=0.4, q=0.6, r=6 \). Probability \( P(X=6) = \binom{10}{6} (0.4)^6 (0.6)^4 pprox 0.111 \).
Ans 2. \( \lambda=3, x=5 \). \( P(X=5) = \frac{3^5 e^{-3}}{5!} = \frac{243 \times 0.0498}{120} pprox 0.1008 \).
Ans 3. \( Z = \frac{84 - 60}{12} = 2 \). The area to the right of \( Z = 2 \) is \( 0.5 - 0.4772 = 0.0228 \). Hence, 2.28% candidates scored above 84.
Ans 4. Since it is a Binomial setting with \( n=4, p=0.1 \), \( E(X) = np = 4 \times 0.1 = 0.4 \) and Variance \( = npq = 4 \times 0.1 \times 0.9 = 0.36 \).
Unit 5: Inferential Statistics
Population and Sample
In statistics, the Population is the entire set of items/individuals under study, while a Sample is a subset selected from the population.
- Representative sample: An unbiased sample that captures the characteristics of the population.
- Random Sampling: Drawing a sample from the population such that every unit has an equal chance of selection. Example techniques include Simple Random Sampling and Systematic Random Sampling.
Parameter and Statistics
- Parameter: A numerical value summarizing some characteristic of the population (e.g., Population Mean \( \mu \)).
- Statistic: A numerical value summarizing some characteristic of the sample (e.g., Sample Mean \( \overline{x} \)).
Statistical inferences use sample statistics to estimate or test hypotheses about population parameters. The Central Limit Theorem is pivotal here, stating that the sampling distribution of the sample mean approaches a normal distribution as the sample size gets larger, no matter what the shape of the population distribution.
Hypothesis Testing
A Hypothesis is an assumption made about a population parameter.
- Null Hypothesis (\( H_0 \)): Typically the hypothesis of no difference or no effect.
- Alternate Hypothesis (\( H_1 \)): The hypothesis that contradicts the null hypothesis.
The t-Test
Given a small sample size (usually less than 30), a t-test is used to determine if there is a significant difference between the means of two groups. The t-statistic is computed as:
\[ t = \frac{\overline{x} - \mu}{\frac{s}{\sqrt{n}}} \]
where:
- \( \overline{x} \) = Sample mean
- \( \mu \) = Population mean
- \( s \) = Sample standard deviation
- \( n \) = Sample size
- Degrees of Freedom (df) = \( n - 1 \)
Competency-Based Questions
Q1. A psychological study randomly samples 25 individuals out of a population of 10,000 to gauge reading speed. The population average reading speed is 220 words per minute. Is “220 words per minute” a parameter or a statistic? Explain your reasoning with respect to inferential statistics.
Q2. An LED bulb manufacturer claims their new bulbs have an average lifespan of 1000 hours. A consumer rights group tests 16 bulbs and finds an average lifespan of 970 hours with a standard deviation of 40 hours. State the Null and Alternate hypotheses.
Q3. With reference to Q2, compute the t-statistic for the sample data. Will you reject or not reject the null hypothesis at the given degrees of freedom? Frame your answer step-by-step.
Q4. Explain the difference between Simple Random Sampling and Systematic Random Sampling. Provide a scenario where systematic sampling might introduce a bias that simple random sampling avoids.
Answers
Ans 1. It is a parameter, because it describes the average of the whole population (the entire 10,000 individuals).
Ans 2. \( H_0: \mu = 1000 \) (The average lifespan is 1000 hours). \( H_1: \mu \neq 1000 \) (The average lifespan is not 1000 hours).
Ans 3. \( t = \frac{970 - 1000}{40 / \sqrt{16}} = \frac{-30}{10} = -3.0 \). With df = 15, the critical value at 5% significance level is approx 2.13. Since |-3.0| > 2.13, we reject the null hypothesis.
Ans 4. Simple random sampling gives every subset an equal chance. Systematic random sampling selects every \( k^{th} \) element. If the list has a periodic pattern (e.g., every 10th item is a manager), systematic sampling might only pick managers, introducing bias.
Unit 6: Time-based Data
Time Series
A Time Series is a sequence of numerical data points in successive order. Usually, a time series is a sequence taken at successive equally spaced points in time. Time Series Analysis involves methods for analyzing time series data to extract meaningful statistics and characteristics of the data.
Components of Time Series
A time series may consist of the following four components:
- Secular Trend (T): The long-term tendency of the data to increase or decrease. For example, population growth over decades.
- Seasonal Variation (S): Short-term fluctuations that occur regularly during a year, month, or week. E.g., increased sales of winter clothes in December.
- Cyclical Variation (C): Oscillating movements lasting more than a year. These are typical of business cycles (prosperity, recession, depression, recovery).
- Irregular Variation (I): Unpredictable, random variations due to unforeseen events like strikes, natural disasters, or wars.
Methods of Measuring Trend
To isolate and measure the secular trend component, we typically use the following methods:
1. Moving Average Method The moving average is created by averaging the data points over a specified period (e.g., 3-yearly or 5-yearly moving average). It smooths out short-term fluctuations.
2. Method of Least Squares This method provides a mathematical equation to fit the trend exactly. For a straight-line trend \( y = a + bx \), we find the constants \( a \) and \( b \) by solving the normal equations:
\[ \sum y = n a + b \sum x \] \[ \sum xy = a \sum x + b \sum x^2 \]
Competency-Based Questions
Q1. A firm observing its 5-year sales data notices an unexpected dip in sales in 2020 due to the pandemic lockdowns. Identify which component of the Time Series this dip represents. Does it represent cyclical variation? Justify your answer.
Q2. The profit (in lakhs) of a retail company from 2018 to 2022 is 12, 16, 22, 28, and 30, respectively. Find the 3-yearly moving averages to calculate the trend values.
Q3. For the dataset in Q2, establish the equation for a straight-line trend using the Method of Least Squares. Estimate the profit for the year 2025 using the trend line equation.
Q4. Why is the Method of Least Squares considered mathematically more rigorous and reliable for forecasting than the Moving Average Method? Discuss the limitations of the Moving Average Method.
Answers
Ans 1. Irregular Variation. The dip is due to an unforeseen, unpredictable event (the pandemic), unlike Cyclical Variation which has natural rhythmic economic cycles lasting more than a year.
Ans 2. Moving averages: For 2019: \( \frac{12+16+22}{3} = 16.67 \). For 2020: \( \frac{16+22+28}{3} = 22 \). For 2021: \( \frac{22+28+30}{3} = 26.67 \).
Ans 3. Taking mid-year 2020 as Origin (X = 0), \( x \) values are -2, -1, 0, 1, 2. \( \sum x = 0 \), \( \sum y = 108 \), \( \sum x^2 = 10 \), \( \sum xy = 46 \). \( a = \frac{108}{5} = 21.6 \), \( b = \frac{46}{10} = 4.6 \). Line: \( y = 21.6 + 4.6x \). For 2025 (\( x = 5 \)): \( y = 21.6 + 4.6(5) = 44.6 \) lakhs.
Ans 4. Method of Least Squares uses a strict mathematical formula giving an exact trend line free from subjective bias, and it can forecast future values. Moving Average cannot estimate extreme (start/end) boundary values and ignores the exact mathematical curve best fit.
Unit 7: Financial Mathematics
Perpetuity and Sinking Funds
Perpetuity
A Perpetuity is an annuity in which the periodic payments begin on a fixed date and continue indefinitely.
- The Present Value (PV) of a perpetuity of \( R \) per period at an interest rate of \( i \) per period is:
\[ PV = \frac{R}{i} \]
Sinking Fund
A Sinking Fund is a fund created by accumulating predetermined equal periodic payments to pay off a given sum of money at a specified future date. Businesses use sinking funds to retire debts, replace machinery, or fund major future expenses.
Unlike a standard savings account, the purpose of a sinking fund is explicitly defined, ensuring that a specific financial obligation is met on time.
\[ A = R \left[ \frac{(1 + i)^n - 1}{i} \right] \] where \( A \) = Accumulated Amount, \( R \) = Periodic Payment, \( i \) = Interest Rate per period, \( n \) = Number of periods.
Valuation of Bonds
A bond is a debt security issued by a company or government. Valuation of a bond means determining its present fair market value. The bond’s value equals the present value of future interest payments (Coupons) plus the present value of the face value at maturity.
\[ V = C \left[ \frac{1 - (1+i)^{-n}}{i} \right] + F(1+i)^{-n} \] where \( V \) = Valuation, \( C \) = Periodic Coupon Payment, \( i \) = Required Yield to Maturity, \( n \) = Number of periods to maturity, \( F \) = Face Value.
Calculation of EMI (Equated Monthly Installment)
EMI is the fixed payment made by a borrower to a lender at a specified date each calendar month. EMIs are used to pay off both interest and principal each month so that over a specified number of years, the loan is paid off in full.
There are two primary methods:
- Flat-Rate Method: Interest is computed on the entire original principal amount for the entire duration of the loan.
- Reducing-Balance Method: Interest is calculated strictly on the outstanding balance.
For Reducing Balance: \[ E = P \cdot \frac{i(1+i)^n}{(1+i)^n - 1} \] where \( P \) is the loan amount, \( i \) is the monthly interest rate, and \( n \) is the number of months.
Compound Annual Growth Rate (CAGR) and Depreciation
CAGR represents the smoothed annualized growth rate of an investment over a specified time period. \[ CAGR = \left( \frac{EV}{BV} \right)^{\frac{1}{n}} - 1 \] where \( EV \) = Ending Value, \( BV \) = Beginning Value, \( n \) = Number of years.
Linear Method of Depreciation (Straight-Line Method) \[ D = \frac{Cost - Residual\ Value}{Useful\ Life} \]
Competency-Based Questions
Q1. A scholarship fund has been established to pay ₹ 50,000 annually. If the fund earns 5% interest compounded annually, what must be the initial endowment (Present Value of the Perpetuity) for the scholarship to last indefinitely?
Q2. For a loan of ₹ 10 Lakhs at 9% p.a. interest, to be repaid in 5 years, calculate the Equated Monthly Installment (EMI) using the Reducing-Balance Method. Why might a borrower prefer this method over the Flat-Rate Method?
Q3. A bond with a Face Value of ₹ 1,000 pays a semi-annual coupon of 4% (annual rate of 8%). If the current required yield to maturity is 6% per annum, find the present fair market value of the bond if it matures in 5 years.
Q4. A company invests in advanced machinery costing ₹ 50 Lakhs. They estimate its useful life to be 10 years, and its scrap value thereafter to be ₹ 5 Lakhs. Calculate the annual depreciation charge using the Linear Method. What will be the book value of the machinery at the end of Year 6?
Answers
Ans 1. \( PV = \frac{R}{i} = \frac{50000}{0.05} = 10,00,000 \). The initial endowment must be ₹ 10 Lakhs.
Ans 2. \( P = 10,00,000 \), \( i = \frac{0.09}{12} = 0.0075 \), \( n = 5 \times 12 = 60 \). \( E = 1000000 \times \frac{0.0075(1+0.0075)^{60}}{(1+0.0075)^{60} - 1} pprox 20,758 \). Borrowers prefer it as interest is charged only on the remaining balance, meaning lower total interest paid overall.
Ans 3. Semi-annual yield \( i_y = 3% = 0.03 \). \( n = 10 \) periods. Coupon \( C = 4% \times 1000 = 40 \). \( V = 40 \left[ \frac{1 - (1.03)^{-10}}{0.03} \right] + 1000(1.03)^{-10} = 40(8.53) + 1000(0.744) = 341.2 + 744.1 = 1085.3 \). Market value is ₹ 1085.3.
Ans 4. Annual Depreciation \( = \frac{50 - 5}{10} = 4.5 \) Lakhs per year. Book value after Year 6 = \( 50 - (4.5 \times 6) = 50 - 27 = 23 \) Lakhs.
Unit 8: Linear Programming
Introduction and Terminology
Linear Programming (LP) is a mathematical method for determining a way to achieve the best outcome (such as maximum profit or lowest cost) in a given mathematical model for some list of requirements represented as linear relationships.
Common terminology used:
- Decision Variables: The variables whose values we seek to determine (e.g., \( x \) and \( y \)).
- Constraints: The linear inequalities or equations representing resource limitations or conditions.
- Objective Function: The linear function \( Z \) that needs to be maximized or minimized (e.g., \( Z = 5x + 3y \)).
- Non-negative Constraints: The condition that decision variables cannot be negative (e.g., \( x \ge 0, y \ge 0 \)).
- Feasible Region: The common region determined by all the constraints, including the non-negative constraints.
- Optimal Solution: Any point in the feasible region that gives the optimal value (maximum or minimum) of the objective function.
Mathematical Formulation
To formulate a real-life situation mathematically into a linear programming problem:
- Identify the decision variables and denote them as \( x \), \( y \), etc.
- Identify the objective function and express it mathematically as a linear function. State whether it is to be maximized or minimized.
- Identify the constraints or restrictions from the given conditions and express them as linear inequalities.
- Add the non-negative constraints.
Types of Linear Programming Problems
Common application types:
- Manufacturing Problems: To determine the number of units of different products which should be produced to maximize profit.
- Diet Problems: To determine the minimal cost of a diet which contains a certain minimum amount of each nutrient.
- Transportation Problems: To determine a transportation schedule that minimizes the total cost of transporting a commodity from various sources to various destinations.
Graphical Solution Method
The Graphical Method is used when there are only two decision variables.
- Plot each constraint line on a graph.
- Identify the feasible region satisfying all inequalities simultaneously.
- Determine the coordinates of the corner points of the feasible region.
- Evaluate the objective function at each corner point to find the maximum or minimum value.
Competency-Based Questions
Q1. A furniture manufacturer has 200 units of wood and 150 hours of labor labor available per week. He produces tables and chairs. Each table requires 4 units of wood and 2 hours of labor, yielding a profit of ₹ 800. Each chair requires 2 units of wood and 3 hours of labor, yielding a profit of ₹ 500. Formulate this LP problem mathematically.
Q2. Identify the objective function \( Z \) from Q1. Is it a maximization or minimization function?
Q3. Graphically solve the formulated LP problem from Q1 to determine how many tables and chairs should be produced to maximize total profit. State the corner points and the optimal profit.
Q4. A nutritionist is designing a diet plan for an athlete using two food sources, A and B. Source A costs ₹ 30/kg and Source B costs ₹ 40/kg. Discuss what happens to the optimal solution if the price of Food Source A increases significantly, causing the objective function slope to change relative to the constraint slopes.
Answers
Ans 1. Let \( x \) be tables and \( y \) be chairs. Maximize \( Z = 800x + 500y \). Constraints: \( 4x + 2y \le 200 \) (wood), \( 2x + 3y \le 150 \) (labor), \( x,y \ge 0 \).
Ans 2. The objective function is \( Z = 800x + 500y \). It is a maximization function (maximizing profit).
Ans 3. Feasible region corners: \( (0,0), (50,0), (0,50), (37.5, 25) \). Evaluating \( Z \) at (37.5, 25) gives \( 800(37.5) + 500(25) = 30000 + 12500 = 42500 \). Maximum profit is ₹ 42,500 by producing 37.5 tables and 25 chairs (or 37 and 25 practically for integer values).
Ans 4. If the cost of Food Source A increases significantly, the slope of the objective function (cost line) steepens. The optimal solution might shift along the boundaries of the feasible region towards a vertex that relies less on Food Source A and more on Food Source B.