Equation of a line

LVL: FREE

MODULE: Coordinate Geometry and Vectors

[EXEC: MICRO_CORE]

✖️ 1. Slope-intercept form vs. Point-slope form

📐 Slope-intercept form vs. Point-slope form

  • Slope-intercept: y=mx+by = mx + b where mm is slope and bb is y-intercept.
  • Use slope-intercept when you know the slope and where the line crosses the y-axis.
  • Point-slope: yy1=m(xx1)y - y_1 = m(x - x_1) where (x1,y1)(x_1, y_1) is a known point.
  • Use point-slope when you know the slope and any point on the line.
  • Both forms describe the same line, just different starting information.

Example: Line with slope 3 through point (2, 5) is y5=3(x2)y - 5 = 3(x - 2) in point-slope form, or y=3x1y = 3x - 1 in slope-intercept form.

💡 Slope-intercept shows the y-intercept directly; point-slope plugs in any point you know.

[EXEC: DEEP_COMPUTE]

1. Slope-intercept form vs. Point-slope form

Slope-intercept form vs. Point-slope form

Slope-intercept form y=mx+by = mx + b expresses a line using its slope mm and yy-intercept bb. Point-slope form yy1=m(xx1)y - y_1 = m(x - x_1) expresses a line using its slope mm and a known point (x1,y1)(x_1, y_1) on the line.

Intuition: Slope-intercept form is ideal when the yy-intercept is known or needed directly; point-slope form is preferred when working with a specific point and slope, especially when the yy-intercept is not immediately available.

Core Rules:

  • In y=mx+by = mx + b, mm is the slope and bb is the yy-coordinate where the line crosses the yy-axis.
  • In yy1=m(xx1)y - y_1 = m(x - x_1), (x1,y1)(x_1, y_1) is any point on the line and mm is the slope.
  • Both forms describe the same line; conversion between them is algebraic manipulation.
  • Point-slope form is undefined for vertical lines (slope undefined), while slope-intercept form cannot represent vertical lines.

Consequence: Choosing the appropriate form simplifies calculations and aligns with given information.

Example: Given slope m=2m = 2 and point (3,5)(3, 5): point-slope gives y5=2(x3)y - 5 = 2(x - 3), which simplifies to y=2x1y = 2x - 1 in slope-intercept form.

WARN: PRACTICE_BLOCK_EMPTY

QUERY_TAGS: ["equation_of_block_1"] | DIFF_LEVEL:

[EXEC: MICRO_CORE]

✖️ 2. Converting equations into standard form

🔄 Converting equations into standard form

  • Standard form: Ax+By=CAx + By = C where AA, BB, CC are integers and AA is non-negative.
  • Move all xx and yy terms to the left side, constant to the right.
  • Clear fractions by multiplying every term by the least common denominator.
  • Make AA positive by multiplying the entire equation by 1-1 if needed.
  • Convention: AA, BB, CC should have no common factors (reduce if possible).

Example: Convert y=23x+4y = \frac{2}{3}x + 4 to standard form. Multiply by 3: 3y=2x+123y = 2x + 12. Rearrange: 2x+3y=12-2x + 3y = 12. Make AA positive: 2x3y=122x - 3y = -12.

💡 Standard form hides slope but shows both intercepts cleanly.

[EXEC: DEEP_COMPUTE]

2. Converting equations into standard form

Converting equations into standard form

Standard form of a linear equation is Ax+By=CAx + By = C, where AA, BB, and CC are integers, and by convention A0A \geq 0. If A=0A = 0, then B>0B > 0.

Intuition: Standard form emphasizes integer coefficients and symmetry between xx and yy, making it useful for certain algebraic techniques and for representing vertical lines (where B=0B = 0).

Core Rules:

  • Eliminate fractions by multiplying through by the least common denominator.
  • Move all variable terms to one side and the constant to the other.
  • Ensure AA is non-negative; if A<0A < 0, multiply the entire equation by 1-1.
  • Coefficients AA, BB, CC should be integers with no common factor greater than 1.

Consequence: Standard form provides a canonical representation suitable for systems of equations and intercept calculations.

Example: Convert y=23x+4y = \frac{2}{3}x + 4 to standard form. Multiply by 3: 3y=2x+123y = 2x + 12. Rearrange: 2x+3y=12-2x + 3y = 12. Multiply by 1-1: 2x3y=122x - 3y = -12.

WARN: PRACTICE_BLOCK_EMPTY

QUERY_TAGS: ["equation_of_block_2"] | DIFF_LEVEL:

[EXEC: MICRO_CORE]

✖️ 3. Finding the equation given two points or parallel/perpendicular conditions

🎯 Finding the equation given conditions

  • Two points: Find slope m=y2y1x2x1m = \frac{y_2 - y_1}{x_2 - x_1}, then use point-slope with either point.
  • Parallel lines: Use the same slope as the given line, then plug in your new point.
  • Perpendicular lines: Use the negative reciprocal of the given slope, then plug in your new point.
  • If given slope is mm, perpendicular slope is 1m-\frac{1}{m}.

Example: Line through (1, 2) and (3, 8) has slope m=8231=3m = \frac{8-2}{3-1} = 3. Equation: y2=3(x1)y - 2 = 3(x - 1) or y=3x1y = 3x - 1.

💡 Parallel means copy the slope; perpendicular means flip and negate.

[EXEC: DEEP_COMPUTE]

3. Finding the equation given two points or parallel/perpendicular conditions

Finding the equation given two points or parallel/perpendicular conditions

Given two points (x1,y1)(x_1, y_1) and (x2,y2)(x_2, y_2), the slope is m=y2y1x2x1m = \frac{y_2 - y_1}{x_2 - x_1} (provided x2x1x_2 \neq x_1); then use point-slope form with either point. Parallel lines share the same slope; perpendicular lines have slopes that are negative reciprocals (m1m2=1m_1 \cdot m_2 = -1, provided neither is vertical).

Intuition: Two points uniquely determine a line; parallel/perpendicular conditions constrain the slope, requiring only one additional point to fix the line.

Core Rules:

  • Two points: Compute slope, then apply point-slope form.
  • Parallel condition: Use the same slope as the given line.
  • Perpendicular condition: Use the negative reciprocal of the given slope.
  • Vertical/horizontal cases: Vertical lines have undefined slope; horizontal lines have slope 0.

Consequence: These methods systematically construct equations from geometric constraints.

Example: Find the line through (1,2)(1, 2) perpendicular to y=3x+1y = 3x + 1. Perpendicular slope: m=13m = -\frac{1}{3}. Point-slope: y2=13(x1)y - 2 = -\frac{1}{3}(x - 1), simplifying to y=13x+73y = -\frac{1}{3}x + \frac{7}{3}.

WARN: PRACTICE_BLOCK_EMPTY

QUERY_TAGS: ["equation_of_block_3"] | DIFF_LEVEL:

[EXEC: MICRO_CORE]

✖️ 4. Applications: Modeling constant-rate depletion and linear depreciation

💰 Applications: Modeling depletion and depreciation

  • Linear depreciation: Asset loses fixed value each time period (slope is negative).
  • Fuel consumption: Tank starts full, decreases at constant rate per hour or mile.
  • Slope represents the rate of change (negative for depletion).
  • Y-intercept is the starting amount (initial fuel or asset value).
  • X-axis is time or distance; y-axis is remaining quantity or value.

Example: Car worth 20000 dollars depreciates 2000 dollars per year. Equation: V=2000t+20000V = -2000t + 20000 where tt is years. After 5 years: V=2000(5)+20000=10000V = -2000(5) + 20000 = 10000 dollars.

💡 Negative slope means something is running out or losing value over time.

[EXEC: DEEP_COMPUTE]

4. Applications: Modeling constant-rate depletion and linear depreciation

Applications: Modeling constant-rate depletion and linear depreciation

Constant-rate depletion (e.g., fuel consumption) and linear depreciation (e.g., asset value over time) are modeled by linear equations where the dependent variable decreases at a fixed rate. The slope mm represents the rate of change (negative for depletion/depreciation), and the yy-intercept bb represents the initial quantity or value.

Intuition: Linear models capture scenarios where a quantity changes uniformly over time, simplifying prediction and analysis.

Core Rules:

  • Identify the rate: Slope mm equals the change per unit time (negative for depletion).
  • Identify the initial value: yy-intercept bb is the starting amount at time t=0t = 0.
  • Formulate: Use y=mt+by = mt + b where tt is time and yy is the remaining quantity or value.
  • Interpret domain: Ensure y0y \geq 0 for physical quantities; solve mt+b=0mt + b = 0 to find depletion time.

Consequence: Linear models enable straightforward forecasting and decision-making in finance and resource management.

Example: A machine worth 10000 dollars depreciates linearly by 1200 dollars per year. Equation: V=1200t+10000V = -1200t + 10000. After 5 years: V=1200(5)+10000=4000V = -1200(5) + 10000 = 4000 dollars.

WARN: PRACTICE_BLOCK_EMPTY

QUERY_TAGS: ["equation_of_block_4"] | DIFF_LEVEL:

AWAITING_CONFIRMATION

CONFIRM KNOWLEDGE ACQUISITION TO UPDATE SYSTEM ANALYTICS.