Skip to content
🚨 This site is a work in progress. Exciting updates are coming soon!

2.10 Q-2

Question Statement

Divide 20 into two parts such that the sum of their squares will be minimized.


Background and Explanation

This problem asks us to divide a number (in this case, 20) into two parts and minimize the sum of the squares of these parts. To solve this, we will use the concept of optimization and calculus. Specifically, we’ll define a function for the sum of squares, differentiate it, find the critical points, and use the second derivative test to confirm the minimum.


Solution

  1. Define the variables:

    Let the two parts be xx and 20βˆ’x20 - x, where xx is one of the parts, and 20βˆ’x20 - x is the other part.

  2. Set up the sum of squares function:

    The sum of the squares of the two parts can be written as:

f(x)=x2+(20βˆ’x)2 f(x) = x^2 + (20 - x)^2

This equation represents the sum of squares of the two parts.

  1. Simplify the function:

    Expanding the squares:

f(x)=x2+(20βˆ’x)2=x2+(400βˆ’40x+x2) f(x) = x^2 + (20 - x)^2 = x^2 + (400 - 40x + x^2)

Combining like terms:

f(x)=2x2βˆ’40x+400 f(x) = 2x^2 - 40x + 400
  1. Find the derivative of the function:

    To minimize the function, we differentiate f(x)f(x) with respect to xx:

fβ€²(x)=4xβˆ’40 f'(x) = 4x - 40
  1. Set the derivative equal to zero:

    To find the critical points, set the derivative equal to zero:

4xβˆ’40=0 4x - 40 = 0
  1. Solve for xx:

    Solving the equation:

4x=40β‡’x=10 4x = 40 \quad \Rightarrow \quad x = 10
  1. Verify the minimum:

    To confirm that this value of xx gives a minimum, check the second derivative:

fβ€²β€²(x)=4 f''(x) = 4

Since fβ€²β€²(x)f''(x) is positive, this indicates that x=10x = 10 corresponds to a minimum.

  1. Find the two parts:

    The two parts are x=10x = 10 and 20βˆ’10=1020 - 10 = 10.

Thus, the required two parts of 20 are 10 and 10, which minimize the sum of their squares.


Key Formulas or Methods Used

  • Sum of squares function: f(x)=x2+(20βˆ’x)2f(x) = x^2 + (20 - x)^2
  • Derivative: fβ€²(x)=4xβˆ’40f'(x) = 4x - 40
  • Second derivative test: fβ€²β€²(x)=4f''(x) = 4

Summary of Steps

  1. Define the parts as xx and 20βˆ’x20 - x.
  2. Write the sum of squares function: f(x)=2x2βˆ’40x+400f(x) = 2x^2 - 40x + 400.
  3. Differentiate to get fβ€²(x)=4xβˆ’40f'(x) = 4x - 40.
  4. Set the derivative equal to zero: 4xβˆ’40=04x - 40 = 0, solving gives x=10x = 10.
  5. Check the second derivative to confirm a minimum.
  6. The parts are 10 and 10, minimizing the sum of their squares.