📖Topic Explanations

🌐 Overview
Hello students! Welcome to Distance of a point from a line! In mathematics, precision in measurement is not just a skill, it's a superpower that unlocks countless solutions.

Imagine you're an air traffic controller, needing to ensure that an incoming aircraft maintains a safe minimum distance from a prohibited airspace boundary, which can be represented as a straight line. Or perhaps you're a civil engineer, calculating the optimal position for a new building foundation relative to an existing underground utility line. These real-world scenarios, and many more, hinge on a fundamental mathematical concept: precisely determining the shortest distance from a given point to a straight line.

This topic delves into one of the most practical and frequently used concepts in coordinate geometry. We're not just drawing lines and points on a graph; we're quantifying their relationship in space with utmost accuracy. When we talk about the "distance" of a point from a line, we're always referring to the perpendicular distance – the shortest path imaginable from that point to any point on the line. This might seem simple at first glance, but deriving and applying the formula correctly opens up a world of problem-solving possibilities.

For both your board examinations and the highly competitive JEE Main, understanding the distance of a point from a line is absolutely crucial. It forms the bedrock for solving a variety of problems involving lines, circles, parabolas, and even more complex geometrical figures. Questions based on this concept frequently appear, often combined with other topics like finding areas, locus problems, or distances between parallel lines, testing your ability to apply formulas and logical reasoning accurately. Mastering this concept will undoubtedly give you a significant edge!

In this section, we will embark on an exciting journey to understand:

  • The intuitive geometric meaning of the "distance of a point from a line."

  • The powerful formula that allows us to calculate this distance for any given point (x₁, y₁) and line Ax + By + C = 0.

  • How to confidently apply this formula to various problem types, enhancing your analytical skills.

  • Special cases and practical insights that can simplify calculations and save you valuable time during exams.


Get ready to transform abstract geometric ideas into concrete numerical values. This isn't just about memorizing a formula; it's about understanding the elegant logic behind it and wielding it as a powerful tool to solve complex problems with confidence.

Let's dive in and master this essential concept, paving the way for your success in competitive exams and beyond!
📚 Fundamentals
Alright, my bright young mathematicians! Let's dive into one of the most fundamental and incredibly useful concepts in coordinate geometry: finding the distance of a point from a line. This might sound simple, but it's a concept that will pop up again and again, not just in straight lines but also when we study circles, parabolas, ellipses, and hyperbolas. So, let's build a rock-solid foundation for it!

### What Does "Distance of a Point from a Line" Even Mean?

Imagine you're standing at a specific spot (that's our "point"), and there's a long, straight road stretching infinitely in both directions (that's our "line"). If you wanted to reach that road as quickly as possible, what would you do? Would you walk diagonally, or would you walk straight towards it, perpendicular to the road?

You'd walk straight towards it, right? That's because the shortest path between any point and a line is always along the perpendicular segment connecting the point to the line. This is a crucial geometric principle!

So, when we talk about the "distance of a point from a line," we are always referring to the shortest perpendicular distance.

### Visualizing the Concept

Let's picture this:
* You have a point, let's call it `P` with coordinates `(x1, y1)`.
* You have a straight line, let's call it `L`.
* Imagine dropping a perpendicular from point `P` to the line `L`. Let the point where this perpendicular meets the line be `Q`.
* The length of the segment `PQ` is what we call the distance of point `P` from line `L`.

No matter how you draw other segments from `P` to `L`, they will always be longer than `PQ`. This is a property of right-angled triangles – the hypotenuse is always the longest side!

### The General Equation of a Line: A Quick Refresher

Before we get to the magic formula, let's quickly recall the most common and useful form of a straight line equation: the general form.
A straight line can be represented by the equation:


`Ax + By + C = 0`


where `A`, `B`, and `C` are real numbers, and `A` and `B` are not both zero.

For example, `2x + 3y - 5 = 0` is a line in general form. `y = 4x + 1` can be rewritten as `4x - y + 1 = 0` to fit the general form. It's always a good habit to convert any line equation into this form before using the distance formula.

### The Amazing Formula!

Now for the main event! If you have a point `P(x1, y1)` and a line `L` given by the equation `Ax + By + C = 0`, the perpendicular distance `d` between them is given by:




d = |Ax1 + By1 + C| / √(A2 + B2)





Isn't that neat? Let's break down this formula to understand it intuitively.

#### Deconstructing the Formula: What Each Part Means

1. The Numerator: `|Ax1 + By1 + C|`
* This part is super interesting. What happens if the point `(x1, y1)` actually lies ON the line `Ax + By + C = 0`? In that case, `Ax1 + By1 + C` would be exactly equal to `0`. And what should the distance be if the point is on the line? Zero, right? The formula handles this!
* If the point `(x1, y1)` is NOT on the line, then `Ax1 + By1 + C` will give you a non-zero value. The magnitude of this value tells you how "far off" the point `(x1, y1)` is from satisfying the line's equation.
* We use the absolute value `|...|` because distance must always be a positive value. Whether `Ax1 + By1 + C` evaluates to `+5` or `-5`, the distance is `5` units.

2. The Denominator: `√(A² + B²)`
* This part is a normalization factor. Think of `A` and `B` from the line equation `Ax + By + C = 0`. The vector `(A, B)` is actually a normal vector to the line (meaning it's perpendicular to the line).
* `√(A² + B²)` is simply the magnitude of this normal vector.
* Why do we divide by it? It helps scale the numerator so that the final result is indeed the perpendicular distance in proper units. It accounts for the "density" or "spacing" of the lines represented by the equation. A deeper dive into why this specific term appears involves vector projections or geometric derivations, but for now, understand it as the necessary scaling factor.

### Let's Do Some Examples!

Nothing beats understanding like solving a few problems.

Example 1: A Straightforward Calculation

Find the distance of the point `P(2, 3)` from the line `L: 3x + 4y - 12 = 0`.

Step-by-Step Solution:

1. Identify the point and line parameters:
* Point `(x1, y1) = (2, 3)`
* Line `Ax + By + C = 0` gives us `A = 3`, `B = 4`, `C = -12`.

2. Plug the values into the formula:
`d = |Ax1 + By1 + C| / √(A² + B²)`
`d = |(3)(2) + (4)(3) + (-12)| / √(3² + 4²)`

3. Calculate the numerator:
`Numerator = |6 + 12 - 12| = |6| = 6`

4. Calculate the denominator:
`Denominator = √(9 + 16) = √25 = 5`

5. Find the distance:
`d = 6 / 5`


The distance of the point (2, 3) from the line 3x + 4y - 12 = 0 is 6/5 units.



---

Example 2: Line Not in General Form

Find the distance of the point `P(-1, 5)` from the line `L: y = 2x + 7`.

Step-by-Step Solution:

1. Convert the line equation to general form `Ax + By + C = 0`:
The line is `y = 2x + 7`.
Rearranging it, we get `2x - y + 7 = 0`.

2. Identify the point and line parameters:
* Point `(x1, y1) = (-1, 5)`
* From `2x - y + 7 = 0`, we have `A = 2`, `B = -1`, `C = 7`.

3. Plug the values into the formula:
`d = |Ax1 + By1 + C| / √(A² + B²)`
`d = |(2)(-1) + (-1)(5) + (7)| / √(2² + (-1)²) `

4. Calculate the numerator:
`Numerator = |-2 - 5 + 7| = |0| = 0`

5. Calculate the denominator:
`Denominator = √(4 + 1) = √5`

6. Find the distance:
`d = 0 / √5 = 0`


The distance is 0 units. What does this mean? It means the point (-1, 5) lies on the line y = 2x + 7! Let's quickly check: is 5 = 2(-1) + 7? Yes, 5 = -2 + 7, which is 5 = 5. So our formula correctly tells us the point is on the line.



---

Example 3: Distance from the Origin

Find the distance of the origin `O(0, 0)` from the line `L: 5x - 12y + 26 = 0`.

Step-by-Step Solution:

1. Identify the point and line parameters:
* Point `(x1, y1) = (0, 0)`
* Line `Ax + By + C = 0` gives us `A = 5`, `B = -12`, `C = 26`.

2. Plug the values into the formula:
`d = |Ax1 + By1 + C| / √(A² + B²)`
`d = |(5)(0) + (-12)(0) + (26)| / √(5² + (-12)²) `

3. Calculate the numerator:
`Numerator = |0 + 0 + 26| = |26| = 26`

4. Calculate the denominator:
`Denominator = √(25 + 144) = √169 = 13`

5. Find the distance:
`d = 26 / 13 = 2`


The distance of the origin (0, 0) from the line 5x - 12y + 26 = 0 is 2 units.



### Special Cases (Quick Look)

* Horizontal Line: If the line is `y = k` (or `0x + 1y - k = 0`), then `A=0, B=1, C=-k`. The distance from `(x1, y1)` would be `|0*x1 + 1*y1 - k| / √(0² + 1²) = |y1 - k|`. This makes perfect sense, as it's simply the vertical distance between the point's y-coordinate and the line's y-coordinate.
* Vertical Line: If the line is `x = k` (or `1x + 0y - k = 0`), then `A=1, B=0, C=-k`. The distance from `(x1, y1)` would be `|1*x1 + 0*y1 - k| / √(1² + 0²) = |x1 - k|`. Again, this is the horizontal distance between the point's x-coordinate and the line's x-coordinate.

### CBSE vs. JEE Focus:































Aspect CBSE Perspective JEE Perspective
Core Concept Understanding that the shortest distance is perpendicular. Same, but assumes this understanding as foundational.
Formula Application Direct application of the formula with given points and lines. Often, lines will already be in general form. Focus on accurate calculation. Application within complex problems. Lines might need to be derived, points might be unknown, or the distance might be used as a condition for other geometric properties (e.g., finding the locus of points equidistant from two lines, inscribed circles, area calculations).
Problem Complexity Relatively straightforward. Emphasis on correct substitution and arithmetic. Problems often involve multiple concepts where the distance formula is just one step. For instance, finding a point on a line that is a certain distance from another line, or finding equations of angle bisectors based on distances.
Derivation Sometimes asked to derive the formula. Derivation is generally not asked, but understanding *why* the formula works can aid in problem-solving and understanding related concepts.


For both CBSE and JEE, mastering this formula is non-negotiable. For JEE, it's like learning your alphabet before you can write an essay. You need to be able to apply this formula quickly and accurately without thinking twice, so practice, practice, practice!

### Conclusion

So, there you have it! The distance of a point from a line is a fundamental concept representing the shortest (perpendicular) distance. The formula `d = |Ax1 + By1 + C| / √(A² + B²)` is your trusty tool. Remember to always get your line equation into the general form `Ax + By + C = 0` first, and be careful with your signs and calculations. This formula is a building block for many advanced topics in coordinate geometry, so make sure you understand it inside out!
🔬 Deep Dive
Welcome, aspiring mathematicians! Today, we're going to embark on a deep dive into a fundamental concept in coordinate geometry: calculating the distance of a point from a line. This seemingly simple idea has profound applications, not just in geometry, but also in vector algebra, calculus, and even physics. For competitive exams like JEE, a solid understanding here is non-negotiable, as it forms the basis for many complex problems.

Let's begin by understanding what we mean by "distance" in this context.

### What is the Distance of a Point from a Line?

Imagine you're standing at a particular point and there's a long, straight road (representing our line) in front of you. How would you measure your distance to that road? Would you walk diagonally to some point on the road? Or would you walk straight towards it, taking the shortest path?

In mathematics, when we talk about the "distance of a point from a line," we are always referring to the shortest perpendicular distance from that point to the line. This means drawing a line segment from the given point to the given line such that this segment is perpendicular to the given line. The length of this perpendicular segment is our desired distance.

Let's visualize this:
* Given a point P(x₁, y₁)
* Given a line L: Ax + By + C = 0
* We need to find the length of the line segment PQ, where Q is a point on line L such that PQ is perpendicular to L.



### Derivation of the Formula

Let's derive the formula for this distance. This derivation is important not just for understanding where the formula comes from, but also because the steps involved can be used to solve related problems, especially finding the coordinates of the foot of the perpendicular.

Let the given point be P(x₁, y₁) and the line be L: Ax + By + C = 0.
Let Q(x₂, y₂) be the foot of the perpendicular from P to the line L.
The distance we want to find is PQ.

Here's the most common and intuitive derivation method used in JEE and CBSE:

1. Slope of the Line L: The slope of the line Ax + By + C = 0 is m_L = -A/B (assuming B ≠ 0).
2. Slope of the Perpendicular PQ: Since PQ is perpendicular to L, its slope m_PQ will be the negative reciprocal of m_L.
m_PQ = -1 / (-A/B) = B/A (assuming A ≠ 0).
3. Equation of Line PQ: Using point-slope form, the equation of the line passing through P(x₁, y₁) with slope B/A is:
y - y₁ = (B/A)(x - x₁)
A(y - y₁) = B(x - x₁)
Bx - Ay - Bx₁ + Ay₁ = 0
Let's rearrange this to A(x - x₁) + B(y - y₁) = 0. No, this isn't the equation of PQ.
The normal vector to Ax + By + C = 0 is (A, B).
So, the line PQ is parallel to the normal vector (A, B).
We can express the coordinates of any point Q on the line PQ (which passes through P(x₁, y₁) and is parallel to the vector (A, B)) in parametric form:
x₂ = x₁ + Aλ
y₂ = y₁ + Bλ
where λ is a scalar parameter.

4. Foot of the Perpendicular Q(x₂, y₂): Since Q(x₂, y₂) lies on the line L (Ax + By + C = 0), it must satisfy its equation:
A(x₁ + Aλ) + B(y₁ + Bλ) + C = 0
Ax₁ + A²λ + By₁ + B²λ + C = 0
(A² + B²)λ = -(Ax₁ + By₁ + C)
λ = -(Ax₁ + By₁ + C) / (A² + B²)

5. Calculate the Distance PQ: The distance d = PQ = √[(x₂ - x₁)² + (y₂ - y₁)²].
Substitute x₂ = x₁ + Aλ and y₂ = y₁ + Bλ into the distance formula:
d = √[((x₁ + Aλ) - x₁)² + ((y₁ + Bλ) - y₁)²]
d = √[(Aλ)² + (Bλ)²]
d = √[A²λ² + B²λ²]
d = √[λ²(A² + B²)]
d = |λ|√(A² + B²)

6. Substitute the value of λ:
d = |-(Ax₁ + By₁ + C) / (A² + B²)| √(A² + B²)
d = |Ax₁ + By₁ + C| / (A² + B²) * √(A² + B²)
d = |Ax₁ + By₁ + C| / √(A² + B²)

And there you have it! The formula for the distance of a point P(x₁, y₁) from the line Ax + By + C = 0 is:

d = |Ax₁ + By₁ + C| / √(A² + B²)



CBSE vs. JEE Focus:
For CBSE, simply knowing and applying this formula is often sufficient. For JEE, understanding the derivation helps in solving problems where you might need to find the *coordinates of the foot of the perpendicular* or the *image of the point* with respect to the line. The parameter `λ` we found is key to these extended problems. The coordinates of the foot of the perpendicular Q(x₂, y₂) are given by:

(x₂ - x₁) / A = (y₂ - y₁) / B = -(Ax₁ + By₁ + C) / (A² + B²)


This formula is often used to find Q(x₂, y₂).

### Special Cases and Observations

1. Distance from the Origin (0,0): If the point is the origin P(0,0), then (x₁, y₁) = (0,0).
The formula simplifies to: d = |A(0) + B(0) + C| / √(A² + B²) = |C| / √(A² + B²).

2. Why the Absolute Value? Distance is a non-negative quantity. The expression (Ax₁ + By₁ + C) can be positive, negative, or zero. The absolute value ensures that the distance 'd' is always positive or zero. If (Ax₁ + By₁ + C) = 0, it means the point P(x₁, y₁) lies on the line itself, and thus the distance is 0, which makes perfect sense!

3. Horizontal and Vertical Lines:
* For a horizontal line y = k (or 0x + 1y - k = 0), from a point (x₁, y₁):
d = |0(x₁) + 1(y₁) - k| / √(0² + 1²) = |y₁ - k| / 1 = |y₁ - k|. This is simply the absolute difference in y-coordinates, which is correct.
* For a vertical line x = h (or 1x + 0y - h = 0), from a point (x₁, y₁):
d = |1(x₁) + 0(y₁) - h| / √(1² + 0²) = |x₁ - h| / 1 = |x₁ - h|. This is the absolute difference in x-coordinates, also correct.

### Examples

Let's solidify our understanding with some examples.

Example 1: Basic Application
Find the distance of the point (2, 3) from the line 3x + 4y - 5 = 0.

Solution:
Given point P(x₁, y₁) = (2, 3)
Given line L: Ax + By + C = 0, which is 3x + 4y - 5 = 0.
Here, A = 3, B = 4, C = -5.

Using the formula d = |Ax₁ + By₁ + C| / √(A² + B²):
d = |3(2) + 4(3) + (-5)| / √(3² + 4²)
d = |6 + 12 - 5| / √(9 + 16)
d = |13| / √25
d = 13 / 5
The distance is 13/5 units.

Example 2: Distance involving an unknown constant (JEE Type)
If the distance of the point (1, -2) from the line 3x + 4y + k = 0 is 5 units, find the value(s) of k.

Solution:
Given point P(x₁, y₁) = (1, -2)
Given line L: 3x + 4y + k = 0. Here, A = 3, B = 4, C = k.
Given distance d = 5 units.

Using the formula d = |Ax₁ + By₁ + C| / √(A² + B²):
5 = |3(1) + 4(-2) + k| / √(3² + 4²)
5 = |3 - 8 + k| / √(9 + 16)
5 = |-5 + k| / √25
5 = |-5 + k| / 5

Now, we solve for k:
|-5 + k| = 5 * 5
|-5 + k| = 25

This implies two possibilities because of the absolute value:
Case 1: -5 + k = 25
k = 25 + 5
k = 30

Case 2: -5 + k = -25
k = -25 + 5
k = -20

So, there are two possible values for k: 30 and -20. This indicates that there can be two parallel lines at a given distance from a point.

Example 3: Locus Problem (JEE Advanced)
Find the equation of the locus of a point such that its distance from the line x + 2y - 1 = 0 is always twice its distance from the line 2x - y + 3 = 0.

Solution:
Let the moving point be P(h, k).
Let L₁ be the line x + 2y - 1 = 0. (A₁=1, B₁=2, C₁=-1)
Let L₂ be the line 2x - y + 3 = 0. (A₂=2, B₂=-1, C₂=3)

Distance of P(h, k) from L₁ (d₁):
d₁ = |1(h) + 2(k) - 1| / √(1² + 2²)
d₁ = |h + 2k - 1| / √5

Distance of P(h, k) from L₂ (d₂):
d₂ = |2(h) - 1(k) + 3| / √(2² + (-1)²)
d₂ = |2h - k + 3| / √5

According to the problem statement, d₁ = 2 * d₂:
|h + 2k - 1| / √5 = 2 * (|2h - k + 3| / √5)
|h + 2k - 1| = 2 |2h - k + 3|

Now, we handle the absolute values. This means the expression inside on one side is either equal to or negative of the expression on the other side.
Case 1: h + 2k - 1 = 2(2h - k + 3)
h + 2k - 1 = 4h - 2k + 6
0 = 3h - 4k + 7
So, one locus is 3x - 4y + 7 = 0.

Case 2: h + 2k - 1 = -2(2h - k + 3)
h + 2k - 1 = -4h + 2k - 6
h + 4h + 2k - 2k - 1 + 6 = 0
5h + 5 = 0
5h = -5
h = -1
So, the other locus is x = -1.

This problem beautifully combines the distance formula with the concept of locus, a common theme in JEE.

### Conceptual Deep Dive and JEE Focus

1. Sign of (Ax₁ + By₁ + C):
This is a critical concept for advanced problems. The expression (Ax₁ + By₁ + C) is related to the position of the point P(x₁, y₁) relative to the line Ax + By + C = 0.
* If Ax₁ + By₁ + C = 0, the point P lies on the line.
* If Ax₁ + By₁ + C > 0, the point P lies on one side of the line.
* If Ax₁ + By₁ + C < 0, the point P lies on the other side of the line.
The sign of (Ax₁ + By₁ + C) for a point (x₁, y₁) gives information about which side of the line it lies on.
For two points P(x₁, y₁) and R(x₃, y₃), they lie on the same side of the line Ax + By + C = 0 if (Ax₁ + By₁ + C) and (Ax₃ + By₃ + C) have the same sign. They lie on opposite sides if the signs are different. This is invaluable for problems involving region definition or finding points within a specific area.

2. Normalization and Geometric Interpretation:
The term √(A² + B²) in the denominator is the magnitude of the normal vector to the line (A, B). When a line equation is normalized (i.e., divided by √(A² + B²)), it becomes x cosα + y sinα - p = 0, where 'p' is the perpendicular distance from the origin to the line. The distance formula is essentially an extension of this normal form.

3. Alternative Derivations / Perspectives (for intuitive understanding):
* Area Method: Consider a triangle formed by the point P(x₁, y₁) and two points on the line L. The area of this triangle can be calculated using the determinant formula. If you take the base as the distance between the two points on L, then the height of the triangle will be the perpendicular distance 'd'. This method can be quite algebraic but provides a different perspective.
* Vector Projection: In vector geometry (often studied in 3D but applicable in 2D), the distance of a point P from a line passing through point A with direction vector v is given by the magnitude of the projection of vector AP onto the normal vector of the line. This is the underlying vector principle behind the formula.

### Conclusion

The distance of a point from a line is a foundational concept in coordinate geometry. Mastering its formula and understanding its derivation will not only help you solve direct problems but also equip you to tackle more complex questions in JEE, especially those involving locus, image of a point, and relative positions of points with respect to a line. Remember to always visualize the geometry and consider the implications of the absolute value for multiple solutions. Keep practicing, and you'll find this topic surprisingly versatile!
🎯 Shortcuts
This section provides effective mnemonics and shortcuts to quickly recall and apply the formula for the distance of a point from a line. Mastery of this formula is crucial for both CBSE and JEE examinations.

### The Fundamental Formula

First, let's recall the formula for the distance ($d$) of a point $(x_1, y_1)$ from a line $Ax + By + C = 0$:

$$d = frac{|Ax_1 + By_1 + C|}{sqrt{A^2 + B^2}}$$

Now, let's break it down for easy remembrance.

### Mnemonics for the Numerator

The numerator is $|Ax_1 + By_1 + C|$. This is simply the expression for the line equation with the point's coordinates substituted into it, and its absolute value taken.

* Mnemonic: "Plug in the Point, Remember to keep it Positive!" (PPRP)
* Plug in the $(x_1, y_1)$ coordinates into the $Ax+By+C$ expression.
* Remember the absolute value bars ($|ldots|$).
* Positive: Distance must always be a non-negative value. The absolute value ensures this.

### Mnemonics for the Denominator

The denominator is $sqrt{A^2 + B^2}$.

* Mnemonic 1: "Root of Squares of Coefficients!" (RSOC)
* Root: Square root sign.
* Squares: Of the coefficients.
* Coefficients: Refers to $A$ (coefficient of $x$) and $B$ (coefficient of $y$).
* Mnemonic 2 (JEE Specific - Vector Connection): "It's the Magnitude of the Normal vector!"
* For a line $Ax+By+C=0$, the vector $vec{n} = Ahat{i} + Bhat{j}$ is normal to the line. Its magnitude is $|vec{n}| = sqrt{A^2 + B^2}$. This connection is useful for deeper understanding in JEE.

### Combined Shortcut for the Formula

Think of the formula as a fraction:

"Substitute, Absolute, Divide by Root-Square-Sum."

  • Substitute: Plug $(x_1, y_1)$ into $Ax+By+C$.

  • Absolute: Take the absolute value of the result.

  • Divide by Root-Square-Sum: Divide by $sqrt{A^2+B^2}$.




### Quick Shortcuts for Special Cases

1. Distance of Origin (0,0) from a Line:
* If the point is the origin $(0,0)$, the formula simplifies greatly:
$$d = frac{|A(0) + B(0) + C|}{sqrt{A^2 + B^2}} = frac{|C|}{sqrt{A^2 + B^2}}$$
* Shortcut: "Just C over Root-Square-Sum!" (CSRSS) - Remember to take the absolute value of C.

2. Distance Between Two Parallel Lines (JEE Important!)
* For two parallel lines $Ax + By + C_1 = 0$ and $Ax + By + C_2 = 0$ (coefficients of $x$ and $y$ must be identical):
$$d = frac{|C_1 - C_2|}{sqrt{A^2 + B^2}}$$
* Shortcut: "Difference of C's (constant terms) over Root-Square-Sum!"
* JEE Tip: Ensure $A$ and $B$ coefficients are identical for both lines before applying this shortcut. If not, divide/multiply one equation to match them.

### CBSE vs. JEE Focus

* CBSE: Primarily focuses on accurate application of the main formula and the distance from the origin. Clear steps are important.
* JEE: Requires not only accurate application but also speed and an understanding of the underlying principles (e.g., normal vector concept). The shortcut for parallel lines is a very common JEE question type.

Keep practicing these mnemonics and shortcuts to build speed and accuracy. You've got this!
💡 Quick Tips

Quick Tips: Distance of a Point from a Line



Understanding the distance of a point from a line is a fundamental concept in coordinate geometry, frequently tested in JEE Main, often as a component of more complex problems. These quick tips will help you master this concept efficiently.


  • Master the Formula:

    • The absolute bedrock is the formula itself. For a point $P(x_1, y_1)$ and a line $Ax + By + C = 0$, the distance $d$ is given by:
      $d = frac{|Ax_1 + By_1 + C|}{sqrt{A^2 + B^2}}$

    • JEE Tip: Commit this formula to memory. Speed and accuracy in recall are crucial.



  • Standard Form Requirement:

    • Always ensure the line equation is in its general form, $Ax + By + C = 0$, before applying the formula. If it's in slope-intercept ($y = mx + c$) or any other form, convert it first. For example, $y = mx + c$ becomes $mx - y + c = 0$, so $A=m, B=-1, C=c$.



  • Absolute Value is Key:

    • The numerator $|Ax_1 + By_1 + C|$ ensures that the distance is always non-negative, as distance is a scalar quantity. Never forget the absolute value.



  • Denominator Significance:

    • The denominator $sqrt{A^2 + B^2}$ represents the magnitude of the normal vector to the line. It ensures that the distance is normalized, regardless of how the line equation is scaled (e.g., $2x+4y+6=0$ and $x+2y+3=0$ represent the same line and yield the same distance).



  • Special Case: Distance from the Origin:

    • If the point is the origin $(0,0)$, the formula simplifies to $d = frac{|C|}{sqrt{A^2 + B^2}}$. This is a common specific instance.



  • Distance Between Parallel Lines:

    • This concept directly extends to finding the distance between two parallel lines, say $Ax + By + C_1 = 0$ and $Ax + By + C_2 = 0$.
      The distance $d = frac{|C_1 - C_2|}{sqrt{A^2 + B^2}}$.

    • CBSE vs. JEE: While CBSE focuses on applying this, JEE might combine it with finding the equation of a line parallel to a given line that satisfies certain conditions.



  • Geometric Interpretation:

    • Remember that the formula calculates the perpendicular distance from the point to the line. This is the shortest possible distance. Any problem involving the "shortest distance" from a point to a line will use this formula.



  • Applications in JEE Problems:

    • This formula is a building block for many JEE problems:

      • Finding the area of a triangle or quadrilateral when one side is on a given line.

      • Determining the coordinates of the incenter or excenters of a triangle (which involve perpendicular distances to sides).

      • Finding the equation of a circle tangent to a line (radius is the distance from center to line).

      • Problems involving locus, reflections, or projections.







By internalizing these quick tips, you'll not only recall the formula accurately but also understand its implications and applications, which is vital for solving diverse problems in JEE Main.

🧠 Intuitive Understanding

Intuitive Understanding: Distance of a Point from a Line



Understanding the "distance of a point from a line" is fundamental in coordinate geometry. While there's a precise formula for it, grasping its intuitive meaning is crucial for problem-solving and building a strong conceptual foundation.



What Does "Distance" Mean Here?


When we talk about the distance from a point to a line, we are always referring to the shortest possible distance. Imagine you're standing at a specific point, and there's a long, straight road (representing the line). If you want to reach the road as quickly as possible, you wouldn't walk diagonally or along a curved path. You would walk straight towards it, taking the most direct route.




  • Key Idea: The shortest distance from a point to a line is always the perpendicular distance.



Why Perpendicular?


Consider a point P and a line L. If you draw a perpendicular from P to L, let's say it meets the line at point Q. Now, pick any other point R on the line L (different from Q). If you connect P to R, you form a right-angled triangle PQR, where the right angle is at Q.



  • In a right-angled triangle, the hypotenuse is always the longest side.

  • Here, PR is the hypotenuse, and PQ is one of the legs (the perpendicular distance).

  • Therefore, PQ < PR. This demonstrates that any path from P to L that is not perpendicular will be longer than the perpendicular path.



Visualizing the Concept


Think of it like this:



  1. You have a fixed point (e.g., a nail hammered into a board).

  2. You have a long, straight ruler (the line).

  3. The "distance" is the length of the shortest string you can stretch from the nail to the ruler, such that the string is taut and forms a right angle with the ruler.


This perpendicular segment from the point to the line is the unique shortest path.



Relevance for Exams (JEE & CBSE)


This concept is not just an isolated formula; it's a building block for many advanced problems in coordinate geometry. You'll use it to:



  • Find the area of triangles/quadrilaterals.

  • Determine distances between parallel lines.

  • Solve problems involving loci of points.

  • Understand properties of circles, parabolas, ellipses, and hyperbolas.


CBSE Callout: A clear understanding is essential for basic applications and derivations.


JEE Main Callout: This fundamental concept is frequently tested, sometimes directly, but more often as a critical step within a multi-concept problem.




Remember: Whenever you hear "distance from a point to a line," immediately think of the perpendicular segment connecting them. This intuitive understanding will guide you correctly, even before applying the formula. Keep practicing to solidify this geometric intuition!


🌍 Real World Applications

The concept of the distance of a point from a line is not just an abstract mathematical formula; it forms the bedrock for solving a multitude of practical problems across various fields. Understanding this concept allows us to quantify proximity, assess safety, and optimize designs in the real world.



Here are some key real-world applications:





  • Urban Planning and Architecture:

    • Setback Regulations: Architects and urban planners use this concept to ensure buildings adhere to minimum "setback" distances from property lines, roads, or natural features like rivers. This prevents overcrowding, ensures safety, and maintains aesthetic appeal.

    • Infrastructure Placement: When planning new roads, pipelines, or utility lines (which can be modeled as lines), it's crucial to calculate the shortest distance from existing homes or landmarks (points) to these new structures to minimize disruption or ensure safety clearances.




  • Navigation and GPS Systems:

    • Closest Point on a Route: GPS devices often calculate the perpendicular distance from your current location (a point) to a planned route (a line segment or a series of line segments). This helps determine how far off course you are or the shortest path to rejoin the route.

    • Collision Avoidance: In maritime or aviation navigation, this principle can be used to determine if a vessel or aircraft (point) is dangerously close to a designated shipping lane, no-fly zone, or a projected flight path of another object (lines).




  • Robotics and Automation:

    • Obstacle Avoidance: Robots navigating in a factory or home environment use sensors to detect obstacles. If a wall or a conveyor belt can be modeled as a line, the robot calculates its distance from this line to maintain a safe operating clearance and avoid collisions.

    • Path Planning: For an autonomous robot, determining the shortest path to reach a specific "linear" target (e.g., following a marked line on the floor, or reaching a boundary) involves this calculation.




  • Computer Graphics and Game Development:

    • Collision Detection: In video games, to detect if a character or object (represented as a point or simple shape) collides with a wall or an environmental boundary (often represented as lines or planes), this distance calculation is fundamental.

    • User Interface Design: Ensuring that interactive elements on a screen are sufficiently spaced from each other or from screen boundaries can involve similar geometric principles.




  • Engineering and Physics:

    • Stress Analysis: In structural engineering, calculating the perpendicular distance from a point where a force is applied to an axis of rotation or a support beam is essential for determining moments and stresses.

    • Electrical Safety: When designing electrical systems, maintaining minimum safe distances between live wires and grounding points or other components is critical to prevent short circuits and ensure safety.





Understanding the mathematical formula for the distance of a point from a line provides the analytical tool to solve these diverse and critical real-world challenges efficiently. While JEE questions might not directly ask for "real-world applications," a strong conceptual grasp of *why* these formulas work can aid in problem-solving and deeper understanding.

🔄 Common Analogies

Common Analogies for Distance of a Point from a Line



Understanding complex mathematical concepts often becomes easier when we relate them to real-world scenarios. Analogies provide a powerful tool to build intuition, making the abstract concept of the distance of a point from a line more concrete and relatable.

The core idea behind the "distance of a point from a line" is finding the shortest possible length from that specific point to any point on the given line. This shortest distance is always measured along a path that is perpendicular to the line.

Here are some common analogies to help visualize this concept:



  • Analogy 1: A Person and a Wall

    Imagine you are standing in an empty room (you are the point). There's a long, straight wall in front of you (this is the line). If you want to find the shortest distance from where you are standing to the wall, you wouldn't walk diagonally or parallel to the wall. You would walk straight towards it until you touch it, forming a 90-degree angle with the wall. This 'straight walk' is your shortest, perpendicular distance.



    • You: Represent the given point ( (x_1, y_1) ).

    • The Wall: Represents the line ( Ax + By + C = 0 ).

    • Your Straight Walk: Represents the perpendicular distance.




  • Analogy 2: A Ship and a Coastline

    Consider a ship sailing in the ocean (the point) and a long, straight coastline (the line). If the ship needs to send a rescue boat to the nearest point on the shore, the captain would instruct the boat to travel directly towards the coastline, not along an angled path. The path the rescue boat takes to reach the closest point on the shore will be perpendicular to the coastline. This ensures the shortest travel time and distance.



    • The Ship: Represents the point ( (x_1, y_1) ).

    • The Coastline: Represents the line ( Ax + By + C = 0 ).

    • Rescue Boat's Path: Represents the perpendicular distance.




  • Analogy 3: A Bird and a Power Line

    Picture a bird flying in the air (the point) and a straight power line stretching across poles (the line). If the bird wants to land on the closest point of the power line, it will fly directly towards it. It won't fly along the length of the wire or at an oblique angle unless it aims for a specific, more distant point. The shortest path for the bird to reach the wire is always a direct, perpendicular drop or ascent.



    • The Bird: Represents the point ( (x_1, y_1) ).

    • The Power Line: Represents the line ( Ax + By + C = 0 ).

    • Bird's Shortest Flight: Represents the perpendicular distance.





Key Takeaway for JEE & CBSE:


In all these analogies, the shortest path from a "point" to a "line" is consistently the one that forms a right angle (90 degrees) with the line. This intuition is fundamental to understanding the formula for the distance of a point from a line and applying it correctly in problems. Visualizing these scenarios can help you recall the concept and its implications even under exam pressure.

📋 Prerequisites

Prerequisites for Distance of a Point from a Line



To master the concept of the distance of a point from a line, it's crucial to have a strong foundation in several fundamental topics from coordinate geometry and basic algebra. These concepts are not just building blocks but also frequently appear in problems related to this topic, especially in JEE.

Here are the essential prerequisites:



  • 1. Cartesian Coordinate System:

    • Understanding how points are represented in a 2D plane using ordered pairs (x, y).

    • Familiarity with the x-axis, y-axis, origin, and quadrants.

    • JEE Tip: A firm grasp of plotting points and basic geometric shapes on a coordinate plane is fundamental for visualizing problems.




  • 2. Distance Formula Between Two Points:

    • The ability to calculate the distance between any two given points (x1, y1) and (x2, y2) using the formula:

      d = √((x2 - x1)2 + (y2 - y1)2)



    • This is a core formula in coordinate geometry and is often used in deriving other formulas or solving related problems (e.g., finding the length of a perpendicular).




  • 3. Equation of a Straight Line (Various Forms):

    • Knowledge of different forms of linear equations:

      • Slope-intercept form: y = mx + c (where 'm' is slope, 'c' is y-intercept).

      • Point-slope form: y - y1 = m(x - x1) (where 'm' is slope, (x1, y1) is a point on the line).

      • Two-point form: (y - y1) = ((y2 - y1) / (x2 - x1))(x - x1).

      • General form: Ax + By + C = 0. This is the most crucial form for the distance formula, as the formula directly uses A, B, and C.



    • CBSE vs. JEE: For CBSE, knowing how to convert between forms and identify parameters (A, B, C) is key. For JEE, quick conversion and recognition are essential, especially when lines are given in non-standard forms.




  • 4. Slope of a Line:

    • Definition of slope (`m = tanθ` or `m = (y2 - y1) / (x2 - x1)`).

    • Understanding the relationship between the slope and the angle a line makes with the positive x-axis.




  • 5. Conditions for Parallel and Perpendicular Lines:

    • Parallel Lines: Two non-vertical lines are parallel if and only if their slopes are equal (`m1 = m2`).

    • Perpendicular Lines: Two non-vertical lines are perpendicular if and only if the product of their slopes is -1 (`m1 * m2 = -1`). This concept is critical as the distance of a point from a line is measured along the perpendicular.




  • 6. Basic Algebraic Manipulations:

    • Solving linear equations and systems of linear equations.

    • Substitution and simplification of algebraic expressions.

    • Working with square roots and squares.




  • 7. Concept of Absolute Value:

    • Understanding that `|x|` represents the non-negative value of 'x'.

    • The distance formula for a point from a line involves an absolute value in the numerator to ensure the distance is always positive.





Ensuring a solid grasp of these prerequisites will make the topic of "Distance of a point from a line" much easier to understand, apply, and solve complex problems related to it. Keep practicing these foundational concepts!
⚠️ Common Exam Traps

Common Exam Traps: Distance of a Point from a Line


Understanding the formula for the perpendicular distance of a point (x₁, y₁) from a line Ax + By + C = 0 is fundamental. However, several subtle pitfalls can lead to incorrect answers in both CBSE and JEE exams. Being aware of these traps can significantly improve accuracy.





  • Trap 1: Forgetting the Absolute Value

    The distance formula is d = |Ax₁ + By₁ + C| / √(A² + B²). A very common mistake is to forget the absolute value in the numerator. Distance is always a non-negative quantity. Forgetting the absolute value will lead to a negative distance if (Ax₁ + By₁ + C) evaluates to a negative number, which is incorrect.

    JEE Tip: In problems involving areas, ratios, or properties of geometric figures, a sign error here can propagate and ruin the entire solution.




  • Trap 2: Line Equation Not in Standard Form

    The formula requires the line equation to be in the standard form Ax + By + C = 0. Students often directly apply the formula when the equation is given as y = mx + c, or Ax + By = -C.

    Example: If the line is given as 2x - 3y = 5, you must rewrite it as 2x - 3y - 5 = 0 before identifying A=2, B=-3, C=-5. If C is used as 5, the numerator will have an incorrect sign.




  • Trap 3: Incorrectly Identifying Coefficients A, B, C

    Pay close attention to the signs and values of A, B, and C.


    • If a term is missing, its coefficient is zero (e.g., for x = 3, it's 1x + 0y - 3 = 0, so A=1, B=0, C=-3).

    • Ensure C is on the LHS (left-hand side) along with Ax and By. If the equation is Ax + By = C, then for the formula, use Ax + By - C = 0, meaning the constant term is actually -C.




  • Trap 4: Calculation Errors in the Denominator

    The denominator is √(A² + B²). Squaring negative numbers (like (-3)²) should always yield a positive result (9). Simple arithmetic mistakes or sign errors while squaring and adding can lead to an incorrect denominator.




  • Trap 5: Confusion with Distance Between Parallel Lines

    While related, the formula for the distance between two parallel lines Ax + By + C₁ = 0 and Ax + By + C₂ = 0 is d = |C₁ - C₂| / √(A² + B²). Students sometimes incorrectly try to adapt the point-to-line formula or mix the two. Remember that for parallel lines, the coefficients A and B must be the same (or proportional). If they are proportional, first make them identical by dividing/multiplying the entire equation.

    JEE Relevance: Questions often combine these concepts, e.g., finding the area of a square given one vertex and the equation of a diagonal.




  • Trap 6: Assuming Distance Along a Specific Direction

    The formula *always* gives the shortest (perpendicular) distance. If a question asks for the distance of a point from a line along a specific direction (e.g., parallel to the y-axis, or with a certain slope), this formula is not directly applicable. You would need to find the intersection point of the given line and a line passing through the point in the specified direction, then use the distance formula between two points. This is a higher-level application.




  • Trap 7: Special Cases - Horizontal/Vertical Lines

    While the general formula works, for lines like x = k or y = k, it's often faster and less error-prone to use direct observation.


    • Distance of (x₁, y₁) from x = k is |x₁ - k|.

    • Distance of (x₁, y₁) from y = k is |y₁ - k|.


    Relying solely on the general formula for these simple cases can sometimes introduce unnecessary complexity or errors.






Stay Sharp! Always double-check your sign conventions and ensure the line equation is in the correct standard form. Careful attention to detail can prevent these common errors.


Key Takeaways

Grasping the concept of the distance of a point from a line is fundamental in Coordinate Geometry and is frequently tested in both CBSE board exams and JEE Main. These key takeaways summarize the essential formulas and applications.



Key Takeaways: Distance of a Point from a Line




  • The Core Formula:

    • The perpendicular distance 'd' of a point P($x_1, y_1$) from a line L: $Ax + By + C = 0$ is given by:


      $d = frac{|Ax_1 + By_1 + C|}{sqrt{A^2 + B^2}}$



    • Crucial Note: Always ensure the line equation is in the general form $Ax + By + C = 0$ before applying the formula. For example, if it's $Ax + By = C'$, rewrite it as $Ax + By - C' = 0$ to correctly identify 'C'.

    • The absolute value in the numerator ensures that the distance 'd' is always non-negative, as distance is a scalar quantity.




  • Distance from the Origin:

    • A special case of the above, if the point is the origin (0, 0), the distance 'd' from the line $Ax + By + C = 0$ simplifies to:


      $d = frac{|C|}{sqrt{A^2 + B^2}}$






  • Distance Between Two Parallel Lines:

    • For two parallel lines $L_1: Ax + By + C_1 = 0$ and $L_2: Ax + By + C_2 = 0$ (note that the coefficients of x and y are identical), the distance 'd' between them is:


      $d = frac{|C_1 - C_2|}{sqrt{A^2 + B^2}}$



    • Important Step: Before using this formula, ensure that the coefficients of 'x' and 'y' for both parallel lines are exactly the same. If you have $2x + 4y + 5 = 0$ and $x + 2y + 3 = 0$, you must multiply the second equation by 2 to make them consistent: $2x + 4y + 6 = 0$. Then, $C_1 = 5$ and $C_2 = 6$.




  • Applications & JEE Relevance:

    • Locus Problems: This formula is crucial for finding the locus of a point that is equidistant from two lines, or from a point and a line (e.g., parabola definition).

    • Area of Triangle: The length of an altitude of a triangle can be found by calculating the distance of a vertex from the opposite side (treated as a line). This is then used with the base length to find the area.

    • Geometric Properties: Useful in finding heights of parallelograms, trapezoids, or in general, verifying properties of geometric figures where perpendicular distances are involved.

    • Position of a Point: The expression $(Ax_1 + By_1 + C)$ (without the absolute value) indicates which side of the line the point $(x_1, y_1)$ lies on relative to the origin. If $C
      e 0$
      , and $Ax_1 + By_1 + C$ has the same sign as C, the point is on the same side of the line as the origin. If they have opposite signs, the point is on the opposite side.




  • Common Pitfalls to Avoid:

    • Forgetting the absolute value in the numerator, leading to negative distance.

    • Incorrectly identifying 'A', 'B', or 'C' if the line equation is not in the standard general form.

    • Not normalizing parallel line equations before calculating the distance between them (i.e., making 'A' and 'B' identical).





Mastering these points will significantly aid in solving problems related to straight lines efficiently in your exams. Practice applying these formulas to various problem types to solidify your understanding!

🧩 Problem Solving Approach

Problem Solving Approach: Distance of a Point from a Line



Calculating the perpendicular distance of a given point from a straight line is a fundamental concept in Coordinate Geometry. A systematic approach is crucial for efficiently solving problems related to this topic, especially in competitive exams like JEE Main.



The Core Formula


The perpendicular distance 'd' of a point P($x_1, y_1$) from a line $Ax + By + C = 0$ is given by:



d = $frac{|Ax_1 + By_1 + C|}{sqrt{A^2 + B^2}}$



Step-by-Step Problem Solving Strategy




  1. Standardize the Line Equation:

    • Ensure the given line equation is in the general form $Ax + By + C = 0$. If it's in slope-intercept ($y = mx + c$) or intercept form, convert it first. For example, $y = mx + c$ becomes $mx - y + c = 0$, so $A=m, B=-1, C=c$.




  2. Identify Point Coordinates and Coefficients:

    • Clearly identify the coordinates of the given point as $(x_1, y_1)$.

    • Extract the coefficients $A, B, C$ from the standardized line equation. Be careful with signs.




  3. Substitute into the Formula:

    • Carefully substitute the values of $A, B, C, x_1, y_1$ into the distance formula.




  4. Calculate and Simplify:

    • Perform the arithmetic operations in the numerator and denominator.

    • The absolute value in the numerator ensures that the distance, being a physical quantity, is always non-negative. Always remember to take the absolute value.

    • Simplify the expression to get the final distance.





Key Considerations and JEE Specific Applications




  • Handling Parameters (JEE Focus): Many JEE problems involve finding a parameter (e.g., $k$) such that the distance from a given point to a line containing $k$ is a specific value. In such cases, apply the formula, equate it to the given distance, and solve the resulting equation (often involving absolute values, leading to two cases: positive and negative).


  • Distance Between Parallel Lines: This is a common application. If two lines $L_1: Ax + By + C_1 = 0$ and $L_2: Ax + By + C_2 = 0$ are parallel, choose *any* point $(x_p, y_p)$ on $L_1$ (e.g., set $x=0$ or $y=0$ in $L_1$ to find a point). Then, calculate the distance of this point $(x_p, y_p)$ from the second line $L_2$. The formula simplifies to $frac{|C_1 - C_2|}{sqrt{A^2 + B^2}}$ when the lines are in the form $Ax+By+C=0$. Ensure the coefficients of $x$ and $y$ are identical for both lines before applying this shortcut.


  • Geometric Interpretations: Distance of a point from a line is often used as a 'height' in problems involving areas of triangles or parallelograms. For example, the area of a triangle with a base on a line can be found by $0.5 imes ext{base length} imes ext{perpendicular distance (height)}$.


  • Locus Problems: Problems might ask for the locus of a point whose distance from a given line (or lines) satisfies a certain condition. This often leads to equations of other lines, circles, or parabolas.



Example Walkthrough


Problem: Find the distance of the point $(2, -3)$ from the line $3x - 4y + 5 = 0$.




  1. Standardized Line Equation: The line is already in the form $Ax + By + C = 0$, where $A=3, B=-4, C=5$.


  2. Identify Point and Coefficients:
    Point $(x_1, y_1) = (2, -3)$.
    Coefficients $A=3, B=-4, C=5$.


  3. Substitute into the Formula:
    $d = frac{|(3)(2) + (-4)(-3) + 5|}{sqrt{3^2 + (-4)^2}}$


  4. Calculate and Simplify:
    $d = frac{|6 + 12 + 5|}{sqrt{9 + 16}}$
    $d = frac{|23|}{sqrt{25}}$
    $d = frac{23}{5}$


The distance of the point $(2, -3)$ from the line $3x - 4y + 5 = 0$ is $frac{23}{5}$ units.




Mastering this fundamental distance formula and its applications will unlock a wide range of coordinate geometry problems. Practice various problem types to build confidence!


📝 CBSE Focus Areas

CBSE Focus Areas: Distance of a Point from a Line



For CBSE Board examinations, the topic of the distance of a point from a line is fundamental and primarily tests your ability to correctly apply the formula and handle basic algebraic manipulations. While JEE often integrates this concept into more complex problems, CBSE questions are generally direct and focus on computational accuracy.

Core Concepts for CBSE:



  • Standard Form of a Line: Ensure you are comfortable with the general form of a linear equation, Ax + By + C = 0. All line equations must be converted to this form before applying the distance formula.

  • Distance Formula: The perpendicular distance 'd' of a point (x₁, y₁) from a line Ax + By + C = 0 is given by:



    d = |Ax₁ + By₁ + C| / √(A² + B²)

    Understanding the absolute value sign is crucial, as distance is always non-negative.

  • Distance from the Origin: A common specific case for CBSE is finding the distance of the line Ax + By + C = 0 from the origin (0, 0). In this case, x₁ = 0 and y₁ = 0, simplifying the formula to d = |C| / √(A² + B²).



Typical CBSE Question Patterns:



  1. Direct Application: You will be given a point and the equation of a line, and asked to find the perpendicular distance.

    • Ensure the line equation is in Ax + By + C = 0 form.

    • Carefully substitute the coordinates and coefficients.

    • Simplify the expression, especially the square root in the denominator. Rationalizing the denominator is often expected if the root remains.



  2. Distance Between Parallel Lines: This is a frequently asked question type.

    • Given two parallel lines, say Ax + By + C₁ = 0 and Ax + By + C₂ = 0.

    • The distance 'd' between them is d = |C₁ - C₂| / √(A² + B²).

    • Important: For this formula to be applicable, the coefficients A and B for both lines must be identical. If not, multiply one of the equations by a constant to make them identical (e.g., if one line is 2x + 4y + 5 = 0 and the other is x + 2y + 3 = 0, multiply the second by 2 to get 2x + 4y + 6 = 0).



  3. Finding Unknowns: Problems where the distance is given, and you need to find an unknown coefficient in the line's equation or a coordinate of the point. These often involve solving equations with absolute values or quadratic equations.

  4. Geometric Applications: Questions might involve finding the altitude of a triangle (which is the perpendicular distance from a vertex to the opposite side) or the area of a triangle using this concept.



CBSE vs. JEE Perspective:



























Aspect CBSE Focus JEE Focus
Application Direct application of formula, computational accuracy. Often a step in a larger problem (e.g., Locus, Family of Lines, Conics).
Complexity Simpler algebraic manipulation, clear problem statement. May involve conditional statements, multiple cases, or finding optimal values.
Derivation Understanding the formula is key; derivation is rarely asked. Implicit understanding of derivation helps in problem-solving.


Key takeaway for CBSE:


Master the formula, practice converting different forms of line equations to the standard form, and pay close attention to signs and calculations. Understanding the specific case of parallel lines is also highly recommended.
🎓 JEE Focus Areas

The concept of the distance of a point from a line is fundamental in Coordinate Geometry and frequently appears in various forms in the JEE Main examination. Mastering this topic involves not just memorizing the formula, but understanding its applications in diverse problem types.



Core Formula and Its Derivation (for Recall)


The perpendicular distance of a point P(x₁, y₁) from a line Ax + By + C = 0 is given by:


$$ d = frac{|Ax₁ + By₁ + C|}{sqrt{A² + B²}} $$




  • Key Insight (JEE): Always ensure the equation of the line is in the standard general form Ax + By + C = 0 before applying the formula. Misinterpreting C (e.g., if the equation is Ax + By = C) is a common error.


  • Origin Distance: A special case arises when the point is the origin (0, 0). The distance simplifies to ( frac{|C|}{sqrt{A² + B²}} ).



Variations and Related Formulas




  1. Distance Between Two Parallel Lines:

    If two parallel lines are given by ( Ax + By + C₁ = 0 ) and ( Ax + By + C₂ = 0 ), the distance between them is:


    $$ d = frac{|C₁ - C₂|}{sqrt{A² + B²}} $$


    JEE Tip: Ensure the coefficients of x and y (A and B) are identical for both lines before applying this formula. If they are proportional (e.g., ( 2x + 4y + 5 = 0 ) and ( x + 2y + 3 = 0 )), divide one equation by a common factor to make A and B identical.




  2. Point Equidistant from Two Lines:

    The locus of a point that is equidistant from two intersecting lines forms the angle bisectors of these lines. If the lines are ( a₁x + b₁y + c₁ = 0 ) and ( a₂x + b₂y + c₂ = 0 ), the equations of the angle bisectors are:


    $$ frac{a₁x + b₁y + c₁}{sqrt{a₁² + b₁²}} = pm frac{a₂x + b₂y + c₂}{sqrt{a₂² + b₂²}} $$

    This is a direct application of the distance formula equated for two lines.





Key JEE Applications and Focus Areas




  • Area of a Triangle: The distance formula is crucial for calculating the altitude of a triangle, which is required if the base and height method is used for area calculation. Given base endpoints and the third vertex, you can find the length of the base and the perpendicular distance from the third vertex to the line containing the base.


  • Locus Problems: Many locus problems involve finding the path of a point that maintains a certain distance from a given line or is equidistant from two lines/points.


  • Properties of Geometric Figures:


    • Square/Rhombus: Finding the distance between parallel sides or the length of an altitude.


    • Parallelogram: Calculating the distance between opposite sides to find the height.




  • Inradius/Exradius: In a triangle, the incenter is equidistant from all three sides. The inradius is this common distance, which can be found using the distance formula from the incenter to any side. Similarly, for excenters and exradii.


  • Finding Unknown Parameters: Problems often involve finding an unknown coefficient in the line's equation or the point's coordinates given its distance from a line.


  • Side of Origin: The sign of ( Ax₁ + By₁ + C ) tells us which side of the line ( Ax + By + C = 0 ) the point ( (x₁, y₁) ) lies on, relative to the origin. If ( Ax₁ + By₁ + C ) and ( C ) have the same sign, the point and the origin are on the same side. If opposite signs, they are on opposite sides. This is useful for specific JEE problems.



Illustrative Example (JEE Style)


Problem: A line passes through (2, 2) and is perpendicular to the line ( 3x + y = 3 ). Find the distance of this line from the origin.


Solution Strategy:



  1. Find the slope of the given line.

  2. Find the slope of the perpendicular line.

  3. Use the point-slope form to find the equation of the required line.

  4. Use the distance formula from the origin to this required line.


Step-by-step:



  1. The slope of ( 3x + y = 3 ) (or ( y = -3x + 3 )) is ( m₁ = -3 ).

  2. The slope of a line perpendicular to it is ( m₂ = -1/m₁ = -1/(-3) = 1/3 ).

  3. The equation of the required line passing through (2, 2) with slope 1/3 is:
    $$ y - 2 = frac{1}{3}(x - 2) $$
    $$ 3(y - 2) = x - 2 $$
    $$ 3y - 6 = x - 2 $$
    $$ x - 3y + 4 = 0 $$

  4. Distance of this line ( x - 3y + 4 = 0 ) from the origin (0, 0) is:
    $$ d = frac{|1(0) - 3(0) + 4|}{sqrt{1² + (-3)²}} = frac{|4|}{sqrt{1 + 9}} = frac{4}{sqrt{10}} $$


Thus, the distance of the line from the origin is ( frac{4}{sqrt{10}} ).



CBSE vs JEE Perspective



























Aspect CBSE Board Exams JEE Main
Focus Direct application of formula, simple calculations. Application in multi-concept problems, complex scenarios, analytical thinking.
Problem Types Find distance of point from line; find distance between parallel lines. Locus problems, geometric figure properties, finding parameters, combined with circle/parabola/ellipse concepts.
Complexity Low to Medium. Medium to High. Requires strong problem-solving skills.


To excel in JEE, practice a variety of problems that integrate the distance formula with other concepts like family of lines, angle between lines, circles, and conic sections. Understanding the geometric interpretation of the formula is key to solving tougher problems.


Keep practicing and master these fundamental tools!

🌐 Overview
The perpendicular distance d from a point P(x0, y0) to a line Ax + By + C = 0 is d = |Ax0 + By0 + C| / √(A^2 + B^2). The foot of the perpendicular can be found by projection methods, useful for nearest-point problems.
📚 Fundamentals
• d = |Ax0 + By0 + C| / √(A^2 + B^2).
• For y = mx + c → rewrite as mx − y + c = 0 (A=m, B=−1, C=c).
• Foot of perpendicular via projection or solving two-line system with slope −1/m (for non-vertical).
🔬 Deep Dive
Vector derivation via projection onto unit normal; invariance under orthogonal transformations; extension to distance in higher dimensions (awareness).
🎯 Shortcuts
“|A x0 + B y0 + C| over root A² + B²” — absolute over normalized normal.
💡 Quick Tips
• For axes: distance to x-axis is |y0|; to y-axis is |x0|.
• For parallel lines Ax+By+C1=0 and Ax+By+C2=0: distance = |C2−C1|/√(A²+B²).
• Reduce fractions early to avoid arithmetic errors.
🧠 Intuitive Understanding
Distance means the shortest path—always perpendicular to the line. The formula normalizes the line coefficients so that scaling the equation doesn’t change distance.
🌍 Real World Applications
Closest approach problems in navigation; point-to-road distance in GIS; projection of points onto constraints in optimization; robotics path planning near walls.
🔄 Common Analogies
Drop a perpendicular shadow from the point to the line—the shadow’s length is the distance. Any slanted path is longer.
📋 Prerequisites
General form of a line; vector dot product and projection (optional); basic algebra and square roots; absolute value usage.
⚠️ Common Exam Traps
• Missing absolute value.
• Forgetting to normalize by √(A²+B²).
• Using slope–intercept directly without converting to general form carefully.
Key Takeaways
• Always use absolute value and normalize by √(A^2 + B^2).
• Distance is invariant to scaling of the line equation.
• Use geometry for sanity checks (e.g., to axes).
🧩 Problem Solving Approach
Standardize equation → apply formula → simplify radicals rationally → optionally compute foot by perpendicular slope and intersection to verify.
📝 CBSE Focus Areas
Applying the standard formula; computing foot of perpendicular; solving simple distance and nearest-point problems.
🎓 JEE Focus Areas
Distance between parallel lines; coordinates of foot using vector projection; parameter-based problems and constraints.

No CBSE problems available yet.

No JEE problems available yet.

No videos available yet.

No images available yet.

📐Important Formulas (2)

Distance of a Point from a Line (2D)
d = frac{|Ax_1 + By_1 + C|}{sqrt{A^2 + B^2}}
Text: d equals the absolute value of (A x_1 + B y_1 + C) divided by the square root of (A^2 + B^2).
This formula calculates the shortest (perpendicular) distance ($d$) between a specific point $P(x_1, y_1)$ and a straight line $L$ defined by the general equation $Ax + By + C = 0$. <br> <span style='color: #CC0000;'><strong>Caution:</strong></span> Ensure the line equation is standardized to $Ax + By + C = 0$ (RHS = 0) before substituting the coefficients $A$, $B$, and $C$.
Variables: Used to find the shortest distance from a known point to any given straight line. Essential for problems involving areas of triangles (using base and height), or finding the radius of a circle tangent to a line (distance from center to line).
Distance Between Two Parallel Lines (2D)
d = frac{|C_1 - C_2|}{sqrt{A^2 + B^2}}
Text: d equals the absolute value of the difference between the constant terms (C_1 - C_2) divided by the square root of (A^2 + B^2).
This formula calculates the uniform perpendicular distance ($d$) between two parallel lines. The lines must be written such that the coefficients of x and y are identical:<br> Line 1: $Ax + By + C_1 = 0$<br> Line 2: $Ax + By + C_2 = 0$. <br> <span style='color: #0056b3;'><strong>JEE Focus:</strong></span> If the coefficients are not identical (e.g., $2x+4y$ vs $x+2y$), you must multiply one equation to standardize $A$ and $B$ before using $C_1$ and $C_2$.
Variables: Used exclusively when calculating the constant distance between two straight lines that have the same slope (i.e., are parallel).

📚References & Further Reading (10)

Book
Coordinate Geometry for JEE Main & Advanced
By: SK Goyal
N/A
A modern, competitive exam-focused book detailing the distance formula, its applications, and extensions to 3D geometry and problems involving optimization.
Note: Directly aligned with JEE syllabus requirements, providing challenging numerical problems and theory extensions.
Book
By:
Website
Point-Line Distance -- from Wolfram MathWorld
By: Eric W. Weisstein
https://mathworld.wolfram.com/Point-LineDistance.html
Provides rigorous mathematical definitions, alternate forms of the distance formula (vector form), and connections to linear algebra.
Note: Useful for advanced JEE students seeking deeper mathematical rigor and understanding the vector/3D context.
Website
By:
PDF
Analytical Geometry: Lecture Notes on Lines and Planes in 2D and 3D
By: Prof. R. P. Singh (Sample University Notes)
http://www.sampleuni.edu/math/geometry_notes.pdf
Covers the algebraic derivation of the distance formula and its generalization using projection onto the line's normal vector.
Note: Provides a comprehensive understanding of the vector approach, which is vital for connecting 2D concepts to 3D geometry (JEE Advanced topic).
PDF
By:
Article
Connecting Geometric Loci to Minimum Distance Problems in 2D
By: Mathematical Association of America (MAA)
https://www.maa.org/notes/distance-problems
Discusses how the point-line distance formula forms the basis for defining parabolas and other loci defined by distance criteria, essential for complex JEE problems.
Note: Crucial for understanding the application of the distance concept in conic sections, which is a significant part of the JEE syllabus.
Article
By:
Research_Paper
A Geometrical Interpretation of Optimization Constraints via Perpendicular Distance
By: M. C. Smith
N/A
Explores how the perpendicular distance concept is used to define feasibility regions and constraints in linear programming and optimization problems.
Note: Connects the geometrical concept to optimization theory, a challenging but possible integration point for highly complex JEE Advanced problems.
Research_Paper
By:

⚠️Common Mistakes to Avoid (62)

Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th
Important Other

Ignoring the Requirement for General Form ($Ax+By+C=0$)

A frequent minor mistake is the direct substitution of coefficients $A, B, C$ from a line equation that is *not* in the standardized general form ($Ax+By+C=0$) into the distance formula. This leads to sign errors for $B$ or $C$ or completely missing one coefficient.
💭 Why This Happens:
Students are often given the line in slope-intercept form ($y=mx+c$) or in parametric form and immediately try to identify $A, B, C$ without rearranging. They confuse $B$ (the coefficient of $y$) with 1 or $-1$, depending on which side $y$ is currently placed.
✅ Correct Approach:
Always standardize the line equation first. The coefficients $A, B, C$ must be collected such that the equation reads $Ax + By + C = 0$. Ensure the constant term $C$ is also included on the left side of the equality.
📝 Examples:
❌ Wrong:

Problem: Find the distance of $P(3, 4)$ from the line $3y = 4x - 1$.


Wrong Setup: Assuming $A=4, B=3, C=-1$. (Incorrectly mixing sides)


$$d = frac{|4(3) + 3(4) - 1|}{sqrt{4^2 + 3^2}} = frac{23}{5}$$

✅ Correct:

Step 1: Convert to $Ax+By+C=0$ (General Form)


$$3y = 4x - 1 implies 4x - 3y - 1 = 0$$


Step 2: Identify Coefficients


$A=4, B=-3, C=-1$. Point $(x_1, y_1) = (3, 4)$.


Step 3: Apply Formula


$$d = frac{|A x_1 + B y_1 + C|}{sqrt{A^2 + B^2}} = frac{|4(3) + (-3)(4) + (-1)|}{sqrt{4^2 + (-3)^2}}$$


$$d = frac{|12 - 12 - 1|}{sqrt{16 + 9}} = frac{|-1|}{5} = frac{1}{5}$$

💡 Prevention Tips:
  • JEE Caution: In multi-step problems, ensure every line used for distance calculation is correctly standardized.
  • If the line is given as $y=mx+c$, immediately rewrite it as $mx - y + c = 0$. Here, $A=m, B=-1, C=c$.
  • Always check the signs of $A, B, C$ after rearrangement.
CBSE_12th

No summary available yet.

No educational resource available yet.

Distance of a point from a line

Subject: Mathematics
Complexity: Mid
Syllabus: JEE_Main

Content Completeness: 33.3%

33.3%
📚 Explanations: 0
📝 CBSE Problems: 0
🎯 JEE Problems: 0
🎥 Videos: 0
🖼️ Images: 0
📐 Formulas: 2
📚 References: 10
⚠️ Mistakes: 62
🤖 AI Explanation: No