The problem describes a company that has developed a new product and wants to determine the optimal selling price. The provided table shows the relationship between the selling price $x_i$ (in thousands of CFA francs) and the number of units customers are willing to buy $y_i$. The design costs are 28 million CFA francs, and the production cost per unit is 25,000 CFA francs. The daily production $h(v)$ depends on the machine's speed $v$ (in km/h), and the function is given by $h(v) = -v + 3000 - \frac{8100}{v}$, where $v$ is between 50 and 120. There are two tasks: 1. Determine the speed $v$ that maximizes daily production and calculate the number of units produced at that speed.

Applied MathematicsOptimizationCalculusLinear RegressionProfit MaximizationDerivatives
2025/5/24

1. Problem Description

The problem describes a company that has developed a new product and wants to determine the optimal selling price. The provided table shows the relationship between the selling price xix_i (in thousands of CFA francs) and the number of units customers are willing to buy yiy_i. The design costs are 28 million CFA francs, and the production cost per unit is 25,000 CFA francs. The daily production h(v)h(v) depends on the machine's speed vv (in km/h), and the function is given by h(v)=v+30008100vh(v) = -v + 3000 - \frac{8100}{v}, where vv is between 50 and
1
2

0. There are two tasks:

1. Determine the speed $v$ that maximizes daily production and calculate the number of units produced at that speed.

2. Use linear regression (least squares method) to determine the selling price $x$ that maximizes profit.

2. Solution Steps

Task 1: Maximizing Production
We want to maximize h(v)=v+30008100vh(v) = -v + 3000 - \frac{8100}{v} for v[50,120]v \in [50, 120].
To find the maximum, we can take the derivative of h(v)h(v) with respect to vv and set it equal to
0.
h(v)=1+8100v2h'(v) = -1 + \frac{8100}{v^2}
Setting h(v)=0h'(v) = 0:
1+8100v2=0-1 + \frac{8100}{v^2} = 0
8100v2=1\frac{8100}{v^2} = 1
v2=8100v^2 = 8100
v=±90v = \pm 90
Since vv must be positive, v=90v = 90.
Since v=90v=90 is within the interval [50,120][50, 120], it is a valid critical point.
To confirm that this is a maximum, we can check the second derivative:
h(v)=16200v3h''(v) = -\frac{16200}{v^3}
Since v>0v > 0, h(v)<0h''(v) < 0, which means that v=90v = 90 corresponds to a maximum.
Now we calculate the daily production at v=90v = 90:
h(90)=90+3000810090=90+300090=2820h(90) = -90 + 3000 - \frac{8100}{90} = -90 + 3000 - 90 = 2820
Task 2: Linear Regression and Profit Maximization
First, we will determine the linear regression equation.
The data points are (xi,yi)(x_i, y_i), where xix_i is the selling price and yiy_i is the number of units sold. We want to find a line of the form y=ax+by = ax + b that best fits the data.
We need to calculate the following sums:
xi,yi,xiyi,xi2\sum x_i, \sum y_i, \sum x_i y_i, \sum x_i^2, and nn (number of data points).
xi=[60,80,100,120,140,160,180,200]x_i = [60, 80, 100, 120, 140, 160, 180, 200]
yi=[952,805,630,522,510,324,205,84]y_i = [952, 805, 630, 522, 510, 324, 205, 84]
n=8n = 8
xi=60+80+100+120+140+160+180+200=1040\sum x_i = 60 + 80 + 100 + 120 + 140 + 160 + 180 + 200 = 1040
yi=952+805+630+522+510+324+205+84=4032\sum y_i = 952 + 805 + 630 + 522 + 510 + 324 + 205 + 84 = 4032
xiyi=(60952)+(80805)+(100630)+(120522)+(140510)+(160324)+(180205)+(20084)=57120+64400+63000+62640+71400+51840+36900+16800=424100\sum x_i y_i = (60*952) + (80*805) + (100*630) + (120*522) + (140*510) + (160*324) + (180*205) + (200*84) = 57120 + 64400 + 63000 + 62640 + 71400 + 51840 + 36900 + 16800 = 424100
xi2=602+802+1002+1202+1402+1602+1802+2002=3600+6400+10000+14400+19600+25600+32400+40000=152000\sum x_i^2 = 60^2 + 80^2 + 100^2 + 120^2 + 140^2 + 160^2 + 180^2 + 200^2 = 3600 + 6400 + 10000 + 14400 + 19600 + 25600 + 32400 + 40000 = 152000
Now we can calculate aa and bb:
a=n(xiyi)(xi)(yi)n(xi2)(xi)2=8(424100)(1040)(4032)8(152000)(1040)2=3392800419328012160001081600=8004801344005.956a = \frac{n(\sum x_i y_i) - (\sum x_i)(\sum y_i)}{n(\sum x_i^2) - (\sum x_i)^2} = \frac{8(424100) - (1040)(4032)}{8(152000) - (1040)^2} = \frac{3392800 - 4193280}{1216000 - 1081600} = \frac{-800480}{134400} \approx -5.956
b=(yi)a(xi)n=4032(5.956)(1040)8=4032+6194.248=10226.2481278.28b = \frac{(\sum y_i) - a(\sum x_i)}{n} = \frac{4032 - (-5.956)(1040)}{8} = \frac{4032 + 6194.24}{8} = \frac{10226.24}{8} \approx 1278.28
So, the linear regression equation is y=5.956x+1278.28y = -5.956x + 1278.28
Now we need to find the profit function. The revenue is xy=x(5.956x+1278.28)=5.956x2+1278.28xx * y = x(-5.956x + 1278.28) = -5.956x^2 + 1278.28x (in thousands of CFA francs).
The total cost is 28,000,000+25,000y=28,000,000+25,000(5.956x+1278.28)28,000,000 + 25,000y = 28,000,000 + 25,000(-5.956x + 1278.28) (in CFA francs).
Converting costs to thousands of CFA francs and combining terms: 28000+25(5.956x+1278.28)=28000148.9x+31957=59957148.9x28000 + 25(-5.956x + 1278.28) = 28000 - 148.9x + 31957 = 59957-148.9x.
The profit P(x)P(x) is revenue minus cost:
P(x)=(5.956x2+1278.28x)(28000+25y)=5.956x2+1278.28x(59957148.9x)=5.956x2+1427.18x59957P(x) = (-5.956x^2 + 1278.28x) - (28000 + 25y) = -5.956x^2 + 1278.28x -(59957 - 148.9x)= -5.956x^2 + 1427.18x - 59957
To maximize the profit, we take the derivative and set it equal to 0:
P(x)=11.912x+1427.18=0P'(x) = -11.912x + 1427.18 = 0
11.912x=1427.1811.912x = 1427.18
x=1427.1811.912119.80x = \frac{1427.18}{11.912} \approx 119.80

3. Final Answer

1. The machine should operate at a speed of $v = 90$ km/h for maximum daily production. The number of units produced at this speed is $h(90) = 2820$.

2. The selling price that maximizes profit is approximately $x = 119.80$ thousand CFA francs (or 119,800 CFA francs).

Related problems in "Applied Mathematics"

Question 33: Yakubu's scores in five out of six subjects are 95, 87, 85, 93, and 94. If he requires ...

AveragesVolume of a PyramidBearingsGeometryWord Problems
2025/6/3

A rectangular parallelepiped-shaped container has a length of 80 cm and a width of 30 cm. 40 identic...

Volume CalculationUnit ConversionRate of ChangeWord Problem
2025/6/3

The problem asks us to establish the opening balance sheet based on the provided information as of J...

AccountingBalance SheetIncome StatementTrial BalanceFinancial Statements
2025/6/2

The problem asks which color code corresponds to a $3.9 k\Omega$ resistor.

ElectronicsResistorsColor CodeUnits ConversionEngineering
2025/6/1

The problem asks which color code corresponds to a $3.9 k\Omega$ resistor, given the standard resist...

ElectronicsResistor Color CodeOhm's Law
2025/6/1

The problem is to determine the reactions at supports A and D for a simply supported beam subjected ...

StaticsStructural MechanicsBeam AnalysisEquilibriumMoment Calculation
2025/6/1

Two people, one on a motorcycle and one on a bicycle, start from two cities that are 450 km apart an...

Word ProblemDistance, Rate, and TimeLinear Equations
2025/5/31

A convex lens has a focal length of 15 cm. As shown in the diagram, the lens is placed on a laborato...

OpticsLens FormulaRay DiagramsMagnification
2025/5/31

The problem asks to find the AC signal output, $V_0$, of the given circuit. The circuit consists of ...

Circuit AnalysisAC SignalsDiodeApproximation
2025/5/30

The problem asks to find the AC signal output $V_0$ of the given circuit. The circuit consists of a ...

Circuit AnalysisElectronicsDiodesAC SignalVoltage DividerOhm's Law
2025/5/29