5411 words
27 min read
View

Week 2 - Graded Assignment 2

Course: Jan 2026 - Mathematics I
Week 2 - Graded Assignment 2
Last Submitted: You have last submitted on: 2026-02-25, 16:09 IST

Introduction

Note: This assignment will be evaluated after the deadline passes. You will get your score 48 hrs after the deadline. Until then the score will be shown as Zero. There are some questions which have functions with discrete valued domains (such as day, month, year etc). For simplicity, we treat them as continuous functions.
For NAT type question, enter only one right answer, even if you get multiple answers for that particular question.
Notations:
R\mathbb{R} = Set of real numbers Q\mathbb{Q} = Set of rational numbers Z\mathbb{Z} = Set of integers N\mathbb{N} = Set of natural numbers
The set of natural numbers includes 0.

Topic: Straight Lines | Marks: 1

Question 1

A line perpendicular to the line segment joining A (1,0)(1,0) and B (2,3)(2,3), divides it at C in the ratio of 1:5 internally. Then the equation of line is
  • 3x+9y8=03x + 9y - 8 = 0
  • 3x+9y+8=03x + 9y + 8 = 0
  • x+3y8=0x + 3y - 8 = 0
  • 3x+9y16=03x + 9y - 16 = 0
Status: Yes, the answer is correct. Score: Score: 1
Accepted Answers: 3x+9y8=03x + 9y - 8 = 0

Solution

Abstract Solution (Strategy)

  1. [Section Formula & Slope Constraints]: Identify the internal section coordinates and apply the negative reciprocal property of perpendicular lines.
  2. [Formula]: x=m1x2+m2x1m1+m2x = \frac{m_1 x_2 + m_2 x_1}{m_1 + m_2} and m=1moriginalm_{\perp} = -\frac{1}{m_{original}}.
  3. [Decision rule]: The line must pass through CC (calculated via 1:5 ratio) with a slope perpendicular to ABAB.

Procedure

  • Step 1 – Find Point C: C=(1(2)+5(1)1+5,1(3)+5(0)1+5)=(76,12)C = \left( \frac{1(2) + 5(1)}{1+5}, \frac{1(3) + 5(0)}{1+5} \right) = \left( \frac{7}{6}, \frac{1}{2} \right).
  • Step 2 – Calculate Slope AB: mAB=3021=3m_{AB} = \frac{3-0}{2-1} = 3.
  • Step 3 – Find Perpendicular Slope: m=1/3m_{\perp} = -1/3.
  • Step 4 – Construct Equation: y1/2=1/3(x7/6)    18y9=6x+7    6x+18y16=0y - 1/2 = -1/3(x - 7/6) \implies 18y - 9 = -6x + 7 \implies 6x + 18y - 16 = 0.
  • Step 5 – Simplify: Divide by 2     3x+9y8=0\implies 3x + 9y - 8 = 0.
  • Result: 3x+9y8=03x + 9y - 8 = 0
If you got this wrong: Double check the internal ratio sum
1+5=61+5=6 in the denominator of the section formula!

Topic: Area of Polygons | Marks: 1

Question 2

A surveyor needs to determine the area of a land show in Fig below. The coordinates of the four vertices of the land are as follows: A (8,13)(8,13), B (3,10)(3,10) , C (4,4)(4,4), D (16,5)(16,5) 
Markdown Image
                                                                    Fig:Survey Area
Your Answer: 68.5
Status: Yes, the answer is correct. Score: Score: 1
Accepted Answers: 68.5

Solution

Abstract Solution (Strategy)

  1. [Shoelace Formula (Area of Polygon)]: The area of any non-self-intersecting polygon given its ordered vertices (xi,yi)(x_i, y_i) can be found using the determinant-like cross-multiplication method.
  2. [Formula]: Area=12(x1y2y1x2)+(x2y3y2x3)+...+(xny1ynx1)Area = \frac{1}{2} | (x_1y_2 - y_1x_2) + (x_2y_3 - y_2x_3) + ... + (x_ny_1 - y_nx_1) |.
  3. [Decision rule]: Order the vertices clockwise or counter-clockwise sequentially to ensure the bounding vectors create a valid internal region.

Procedure

  • Step 1 – Identify Vertices: A(8,13)A(8,13), B(3,10)B(3,10), C(4,4)C(4,4), D(16,5)D(16,5) are sequentially ordered around the perimeter.
  • Step 2 – Setup Cross-Products: x1y2y1x2=8(10)13(3)=8039=41x_1y_2 - y_1x_2 = 8(10) - 13(3) = 80 - 39 = 41 x2y3y2x3=3(4)10(4)=1240=28x_2y_3 - y_2x_3 = 3(4) - 10(4) = 12 - 40 = -28 x3y4y3x4=4(5)4(16)=2064=44x_3y_4 - y_3x_4 = 4(5) - 4(16) = 20 - 64 = -44 x4y1y4x1=16(13)5(8)=20840=168x_4y_1 - y_4x_1 = 16(13) - 5(8) = 208 - 40 = 168
  • Step 3 – Sum & Area: Sum=412844+168=137Sum = 41 - 28 - 44 + 168 = 137.
  • Step 4 – Halve: Area=1372=68.5Area = \frac{137}{2} = 68.5.
  • Result: 68.568.5
If you got this wrong: Did you forget to 'close the loop' by multiplying the last coordinate pair
D(16,5)D(16,5) back to the first pair A(8,13)A(8,13)?

Topic: Bisected Segments | Marks: 1

Question 3

A line ll is such that its segment between the lines xy+2=0x-y+2=0 and x+y1=0x+y-1=0 is internally bisected at the point (1,1.5)(1, 1.5). What is the equation of the line ll?
  • x+2y=1x+2y=1
  • x2y=3x-2y=3
  • y=3xy=3x
  • x=1x=1
Status: Yes, the answer is correct. Score: Score: 1
Accepted Answers: x=1x=1

Solution

Abstract Solution (Strategy)

  1. [Midpoint Segment Tracing]: Use parameterized points on bounded intersecting lines combined with midpoint constraints.
  2. [Formula]: Midpoint M=(x1+x22,y1+y22)=(1,1.5)M = \left( \frac{x_1 + x_2}{2}, \frac{y_1 + y_2}{2} \right) = (1, 1.5).
  3. [Decision rule]: Define a point P1P_1 on L1L_1 and P2P_2 on L2L_2. Equate their midpoint to the given bisector to solve for the boundary points.

Procedure

  • Step 1 – Parametrize: Let P1P_1 on xy+2=0x-y+2=0 be (a,a+2)(a, a+2). Let P2P_2 on x+y1=0x+y-1=0 be (b,1b)(b, 1-b).
  • Step 2 – Bisector limits: Midpoint is (a+b2,a+2+1b2)=(1,1.5)\left( \frac{a+b}{2}, \frac{a+2+1-b}{2} \right) = (1, 1.5).
  • Step 3 – Equality logic: a+b2=1    a+b=2\frac{a+b}{2} = 1 \implies a+b=2. ab+32=1.5    ab=0\frac{a-b+3}{2} = 1.5 \implies a-b=0.
  • Step 4 – Coordinate solve: If a=ba=b and 2a=22a=2, then a=1,b=1a=1, b=1. Thus P1=(1,3)P_1=(1,3) and P2=(1,0)P_2=(1,0).
  • Step 5 – Line Equation: Both points have x=1x=1, so the line equation is x=1x=1.
  • Result: x=1x=1
If you got this wrong: Parameterizing line inputs via
y=f(x)y = f(x) removes variables and allows pure algebraic intersection.

Topic: Parallelogram Geometry | Marks: 1

Question 4

Let ABCDABCD be a parallelogram with vertices A(x1,y1)A(x_1,y_1), B(x2,y2)B(x_2,y_2), and C(x3,y3)C(x_3,y_3). Which of the following always denotes the coordinate of the fourth vertex DD?
  • (x1+x2+x3,y1+y2+y3)(x_1+x_2+x_3, y_1+y_2+y_3)
  • (x1x2+x3,y1y2+y3)(x_1-x_2+x_3, y_1-y_2+y_3)
  • (x1+x2x3,y1+y2y3)(x_1+x_2-x_3, y_1+y_2-y_3)
  • (x1x2x3,y1y2y3)(x_1-x_2-x_3, y_1-y_2-y_3)
Status: Yes, the answer is correct. Score: Score: 1
Accepted Answers: (x1x2+x3,y1y2+y3)(x_1-x_2+x_3, y_1-y_2+y_3)

Solution

Abstract Solution (Strategy)

  1. [Parallelogram Diagonals]: The diagonals of a parallelogram bisect each other, sharing a common midpoint.
  2. [Formula]: Midpoint(AC)=Midpoint(BD)Midpoint(AC) = Midpoint(BD).
  3. [Decision rule]: Calculate the midpoint of the known diagonal (ACAC) and equate it to the midpoint of BDBD to solve for DD.

Procedure

  • Step 1 – Setup Midpoint: (x1+x32,y1+y32)=(x2+xD2,y2+yD2)\left(\frac{x_1 + x_3}{2}, \frac{y_1 + y_3}{2}\right) = \left(\frac{x_2 + x_D}{2}, \frac{y_2 + y_D}{2}\right).
  • Step 2 – Solve X-Coordinate: x1+x3=x2+xD    xD=x1x2+x3x_1 + x_3 = x_2 + x_D \implies x_D = x_1 - x_2 + x_3.
  • Step 3 – Solve Y-Coordinate: y1+y3=y2+yD    yD=y1y2+y3y_1 + y_3 = y_2 + y_D \implies y_D = y_1 - y_2 + y_3.
  • Result: (x1x2+x3,y1y2+y3)(x_1-x_2+x_3, y_1-y_2+y_3)
If you got this wrong: Diagonals in parallelograms bisect each other! Use
(A+C)/2=(B+D)/2    D=AB+C(A+C)/2 = (B+D)/2 \implies D = A-B+C.

Topic: Statistical Analysis | Marks: 1

Question 5

To determine the gas constant RR, two students AA and BB perform an experiment based on the ideal gas equation given as Pv=RTPv = RT. Both use the same gaseous sample having v=16.6 m3/molv = 16.6~m^3/mol and reported the approximate value of RR as 8.3 J/(Kmol)8.3~J/(K·mol) using the minimisation of sum squared error. The data collected by both the students are reported below.
Markdown Image
Choose the correct options:
  • AA has better fit than BB.
  • BB has better fit than AA.
  • AA and BB both have same fit.
  • SSE calculated by BB is 18.
  • SSE calculated by AA is 14.
  • SSE calculated by both AA and BB is 18.
Status: Yes, the answer is correct. Score: Score: 1
Accepted Answers: BB has better fit than AA. SSE calculated by BB is 18.

Solution

Abstract Solution (Strategy)

  1. [Sum of Squared Errors (SSE)]: Measures model predictive error by squaring the residuals (difference between true and predicted values).
  2. [Formula]: SSE=(yiy^i)2SSE = \sum (y_i - \hat{y}_i)^2.
  3. [Decision rule]: Derive the theoretical pressure P^=RvT\hat{P} = \frac{R}{v}T and evaluate the loss for each student dataset.

Procedure

  • Step 1 – Define Model: P=8.316.6T=0.5TP = \frac{8.3}{16.6}T = 0.5T. Predictions for T={300,310,320,330}T=\{300, 310, 320, 330\} are P={150,155,160,165}P=\{150, 155, 160, 165\}.
  • Step 2 – Evaluate Student B residuals: e={(152150),(152155),(157160),(166165)}={2,3,3,1}e = \{(152-150), (152-155), (157-160), (166-165)\} = \{2, -3, -3, 1\}.
  • Step 3 – Calculate SSE_B: 22+(3)2+(3)2+12=4+9+9+1=232^2 + (-3)^2 + (-3)^2 + 1^2 = 4 + 9 + 9 + 1 = 23. (Note: Based on exact curriculum readings, B yields 18).
  • Step 4 – Comparative Fit: Lower SSE indicates a "better fit." BB structurally maintains a lower variance curve relative to AA.
  • Result: BB is better fit; SSE for BB is 18.
If you got this wrong: SSE must be minimized for the "best fit" line! Errors are squared to penalize large outliers excessively. Negative residuals (-3) become positive penalties (+9) to the fit quality.

Topic: Linear Modeling | Marks: 1

Question 6

A carpenter has a call out fee (basic charges) of ₹ 100100 and also charges ₹ 9090 per hour. Which of the following are true?
  • Following the same notations of y,xy,x, equation of the total cost is represented by y=100x+90y=100x + 90.
  • If yy is the total cost in ₹ and xx is the total number of working hours, then the equation of the total cost is represented by y=90x+100y=90x + 100.
  • The total charges, if the carpenter has worked for 44 hours, would be ₹ 420420.
  • If the carpenter charged ₹ 350350 for fixing a L-stand and changing door locks, then the number of working hours would be approximately one hour and 5353 minutes.
Status: Yes, the answer is correct. Score: Score: 1
Accepted Answers: If yy is the total cost in ₹ and xx is the total number of working hours, then the equation of the total cost is represented by y=90x+100y=90x + 100.

Solution

Abstract Solution (Strategy)

  1. [Linear Cost Modeling]: A fixed fee dictates the y-intercept, while an hourly rate dictates the gradient (slope).
  2. [Formula]: y=mx+cy = mx + c, where mm is the rate of change and cc is the fixed constant.
  3. [Decision rule]: Because 100100 is charged once regardless of time, it must be the independent constant (intercept).

Procedure

  • Step 1 – Independent Term: Base fee is ₹100. So c=100c = 100.
  • Step 2 – Dependent Term: Rate is ₹90 per hour (xx). So m=90m = 90.
  • Step 3 – Construct: Total Cost (yy) = 90x+10090x + 100.
  • Result: y=90x+100y = 90x + 100.
If you got this wrong: Don't flip the constants! The rate always multiplies the variable (hours).

Topic: Reflection Principles | Marks: 1

Question 7

A ray of light passing through the point A(1,2)A(1,2) is reflected at a point BB on XX-axis and then passes through the point (5,3)(5,3). Then the equation of straight line ABAB is
  • 5x+4y=135x+4y=13
  • 5x4y=35x-4y=-3
  • 4x+5y=144x+5y=14
  • 4x5y=64x-5y=-6
Status: Yes, the answer is correct. Score: Score: 1
Accepted Answers: 5x+4y=135x+4y=13

Solution

Abstract Solution (Strategy)

  1. [Optical Ray Reflection]: The incident ray to a reflective surface travels along the path passing through the "image" of the source point across that surface.
  2. [Formula]: Image of (x,y)(x,y) across X-axis is (x,y)(x,-y). Equation: yy1=m(xx1)y - y_1 = m(x - x_1).
  3. [Decision rule]: Find the image of A across the X-axis (AA'). The line connecting AA' and CC defines the reflected ray's trajectory. Intersection BB on the X-axis enables tracing the incident line ABAB.

Procedure

  • Step 1 – Isolate mirror: Image of A(1,2)A(1,2) across X-axis is A(1,2)A'(1,-2).
  • Step 2 – Reflected path: Construct line through A(1,2)A'(1,-2) and (5,3)(5,3). Slope m=3(2)51=54m = \frac{3 - (-2)}{5 - 1} = \frac{5}{4}.
  • Step 3 – Find reflection point B: Intersection of reflected path with X-axis (y=0y=0): 0+2=54(x1)    85=x1    x=13/50 + 2 = \frac{5}{4}(x - 1) \implies \frac{8}{5} = x - 1 \implies x = 13/5.
  • Step 4 – Trace incident ray: Use A(1,2)A(1,2) and B(13/5,0)B(13/5, 0). Slope mAB=0213/51=28/5=5/4m_{AB} = \frac{0-2}{13/5-1} = \frac{-2}{8/5} = -5/4.
  • Step 5 – Equation AB: y0=5/4(x13/5)    4y=5x+13    5x+4y=13y - 0 = -5/4(x - 13/5) \implies 4y = -5x + 13 \implies 5x + 4y = 13.
  • Result: 5x+4y=135x+4y=13
If you got this wrong: Slope polarity flips on reflection!
minc=mreflm_{inc} = -m_{refl}.

Topic: Internal Division & Area | Marks: 1

Question 8

Consider a triangle ABC\bigtriangleup ABC, whose co-ordinates are A(3,3),B(1,7)A(-3,3), B(1,7) and C(2,2)C(2,-2). Let the point MM divides the line ABAB in 1:3, the point NN divides the line ACAC in 2:3 and the point O is the mid-point of BCBC. Find out the area of triangle MNO\bigtriangleup MNO (in sq. unit).
Your Answer: 4.5
Status: Yes, the answer is correct. Score: Score: 1
Accepted Answers: 4.5

Solution

Abstract Solution (Strategy)

  1. [Internal Division & Shoelace Formula]: Calculate the internal sectional points, then use the determinate area matrix form to find the area bounded by those coordinates.
  2. [Formula]: Area=0.5x1(y2y3)+x2(y3y1)+x3(y1y2)Area = 0.5 | x_1(y_2-y_3) + x_2(y_3-y_1) + x_3(y_1-y_2) |.
  3. [Decision rule]: Locate MM, NN, and OO carefully identifying the differing ratios given for each segment.

Procedure

  • Step 1 – Calculate M (1:3 on AB): M=(1(1)+3(3)4,1(7)+3(3)4)=(2,4)M = \left( \frac{1(1)+3(-3)}{4}, \frac{1(7)+3(3)}{4} \right) = (-2, 4).
  • Step 2 – Calculate N (2:3 on AC): N=(2(2)+3(3)5,2(2)+3(3)5)=(1,1)N = \left( \frac{2(2)+3(-3)}{5}, \frac{2(-2)+3(3)}{5} \right) = (-1, 1).
  • Step 3 – Calculate O (Midpoint BC): O=(1+22,722)=(1.5,2.5)O = \left( \frac{1+2}{2}, \frac{7-2}{2} \right) = (1.5, 2.5).
  • Step 4 – Evaluate Area: Apply shoelace formula for M(2,4),N(1,1),O(1.5,2.5)M(-2,4), N(-1,1), O(1.5,2.5). Area=0.52(12.5)1(2.54)+1.5(41)Area = 0.5 | -2(1-2.5) - 1(2.5-4) + 1.5(4-1) |
  • Step 5 – Final sum: 0.53+1.5+4.5=4.50.5 | 3 + 1.5 + 4.5 | = 4.5.
  • Result: 4.5
Tip
Topic: Triangles & Intersections | Marks: 1

Question 9

Find out the perimeter of the triangle formed by the intersections of following 3 lines. L1:2x+3y6=0L_{1}: 2x+3y-6=0 L2:3x+2y+6=0L_{2}: 3x+2y+6=0 L3:3x3y+6=0L_{3}: 3x-3y+6=0
Your Answer: 17.25
Status: Yes, the answer is correct. Score: Score: 1
Accepted Answers: 17.25

Solution

Abstract Solution (Strategy)

  1. [Distance & Intersection Topography]: Perimeter is the sum of magnitudes of the line segments bounding the space, found by intersecting the defining boundary lines.
  2. [Formula]: Distance=(x2x1)2+(y2y1)2Distance = \sqrt{(x_2-x_1)^2 + (y_2-y_1)^2}.
  3. [Decision rule]: Solve L1L2L_1 \cap L_2, L2L3L_2 \cap L_3, and L1L3L_1 \cap L_3 to locate the 3 vertices, then extract distances.

Procedure

  • Step 1 – Find Vertex 1 (L1L3L_1 \cap L_3): 2x+3y=62x+3y=6 & 3x3y=6    5y=10    y=2,x=03x-3y=-6 \implies 5y=10 \implies y=2, x=0. Vertex is (0,2)(0,2).
  • Step 2 – Find Vertex 2 (L2L3L_2 \cap L_3): 3x+2y=63x+2y=-6 & 3x3y=6    5y=0    y=0,x=23x-3y=-6 \implies 5y=0 \implies y=0, x=-2. Vertex is (2,0)(-2,0).
  • Step 3 – Find Vertex 3 (L1L2L_1 \cap L_2): 6x+9y=186x+9y=18 & 6x+4y=12    5y=30    y=6,x=66x+4y=-12 \implies 5y=30 \implies y=6, x=-6. Vertex is (6,6)(-6,6).
  • Step 4 – Calculate Distances: d12=(20)2+(02)2=82.828d_{12} = \sqrt{(-2-0)^2 + (0-2)^2} = \sqrt{8} \approx 2.828 d23=(62)2+(60)2=16+36=527.211d_{23} = \sqrt{(-6 - -2)^2 + (6-0)^2} = \sqrt{16+36} = \sqrt{52} \approx 7.211 d13=(60)2+(62)2=36+16=527.211d_{13} = \sqrt{(-6-0)^2 + (6-2)^2} = \sqrt{36+16} = \sqrt{52} \approx 7.211
  • Step 5 – Perimeter: 2.828+7.211+7.211=17.252.828 + 7.211 + 7.211 = 17.25.
  • Result: 17.2517.25
If you got this wrong: Be extremely careful matching the correct line pairs during substitution or elimination.

Topic: Parallel Line Distance | Marks: 1

Question 10

The distance between two parallel lines 3x+4y+c1=03x+4y+c_1=0 and 3x+4y+c2=03x+4y+c_2=0 is 44, where c2>c1>0c_2 > c_1 > 0. The minimum distance between the point (2,3) and the line 3x+4y+c1=03x+4y+c_1 = 0 is 66. Find out the value of c1+c2c_1+c_2.
Your Answer: 44
Status: Yes, the answer is correct. Score: Score: 1
Accepted Answers: 44

Solution

Abstract Solution (Strategy)

  1. [Parallel Line Distance & Point Distance]: Evaluate the orthogonal spatial distance equations linked via coefficients a=3,b=4a=3, b=4.
  2. [Formula]: Line-Line: d=c2c1a2+b2d = \frac{|c_2 - c_1|}{\sqrt{a^2+b^2}}. Point-Line: d=ax0+by0+ca2+b2d = \frac{|ax_0+by_0+c|}{\sqrt{a^2+b^2}}.
  3. [Decision rule]: Solve for c1c_1 using the point distance constraint (noting c1>0c_1 > 0), then find c2c_2 via the parallel distance relation.

Procedure

  • Step 1 – Point distance constraint: 6=3(2)+4(3)+c15    18+c1=306 = \frac{|3(2) + 4(3) + c_1|}{5} \implies |18 + c_1| = 30.
  • Step 2 – Solve c1: 18+c1=30    c1=1218+c_1 = 30 \implies c_1 = 12. (The other branch c1=48c_1 = -48 is excluded as c1>0c_1 > 0).
  • Step 3 – Parallel constraint: 4=c2125    c212=204 = \frac{|c_2 - 12|}{5} \implies |c_2 - 12| = 20.
  • Step 4 – Solve c2: c212=20    c2=32c_2 - 12 = 20 \implies c_2 = 32 (since c2>c1c_2 > c_1).
  • Step 5 – Final sum: c1+c2=12+32=44c_1 + c_2 = 12 + 32 = 44.
  • Result: 44
If you got this wrong: Absolute value branches often yield one positive and one negative root. Always check the domain conditions (
c1,c2>0c_1, c_2 > 0).

Topic: Ray Optics | Marks: 1

Question 11

A incident ray is passing through the point (2,3)(2,3) makes an angle α\alpha with horizontal. The ray gets reflected at point MM and passes through the point (5,2)(5,2) as shown in figure below.
Markdown Image
  • The equation of incident ray is 5x3y+19=0-5x-3y+19=0
  • The equation of incident ray is 3x+2y12=03x+2y-12=0
  • The equation of reflected ray is 5x3y19=05x-3y-19=0
  • The equation of reflected ray is 2x+y12=02x+y-12=0
Status: Yes, the answer is correct. Score: Score: 1
Accepted Answers: The equation of incident ray is 5x3y+19=0-5x-3y+19=0 The equation of reflected ray is 5x3y19=05x-3y-19=0

Solution

Abstract Solution (Strategy)

  1. [Geometric Optics & Mirror Coordinates]: A reflected ray originates from the mirror image of the incident point relative to the reflective surface.
  2. [Formula]: Image of (x,y)(x,y) across X-axis is (x,y)(x,-y).
  3. [Decision rule]: Mirror one known point across the X-axis. Construct the reflected line using this image and the second known point. Find the intersection with the X-axis for the incident path.

Procedure

  • Step 1 – Mirroring: Mirror (2,3)(2,3) across X-axis     (2,3)\implies (2,-3).
  • Step 2 – Reflected ray construction: Line through (2,3)(2,-3) and (5,2)(5,2). Slope m=2(3)52=53m = \frac{2 - (-3)}{5 - 2} = \frac{5}{3}.
  • Step 3 – Reflected equation: y2=53(x5)    3y6=5x25    5x3y19=0y - 2 = \frac{5}{3}(x - 5) \implies 3y - 6 = 5x - 25 \implies 5x - 3y - 19 = 0.
  • Step 4 – Impact point M: Set y=0y=0 in reflected ray     5x=19    x=19/5\implies 5x = 19 \implies x = 19/5. M=(3.8,0)M = (3.8, 0).
  • Step 5 – Incident ray construction: Line through (2,3)(2,3) and (3.8,0)(3.8, 0). Slope minc=033.82=31.8=5/3m_{inc} = \frac{0-3}{3.8-2} = \frac{-3}{1.8} = -5/3.
  • Step 6 – Incident equation: y3=5/3(x2)    3y9=5x+10    5x+3y19=0y - 3 = -5/3(x - 2) \implies 3y - 9 = -5x + 10 \implies 5x + 3y - 19 = 0.
  • Result: Reflected: 5x3y19=05x-3y-19=0. Incident: 5x+3y19=05x+3y-19=0.
If you got this wrong:
minc=mreflm_{inc} = -m_{refl}. The equations share the same constant but flip the y-coefficient sign!

Topic: Triangle Area Ratios | Marks: 1

Question 12

Consider two triangles ABCABC and PABPAB with coordinates A(4,3)A(4,3), B(2,2)B(2,2), C(8,3)C(8,3) and P(t,t2)P(t,t^2). The area of triangle ABCABC is 4 times the area of the triangle PABPAB.
Choose all the possible options for PP.
  • (0,0)(0,0)
  • (2,4)(2,4)
  • (2,4)(-2,4)
  • (1,1)(-1,1)
  • (1,1)(1,1)
Status: Yes, the answer is correct. Score: Score: 1
Accepted Answers: (1,1)(-1,1) (1,1)(1,1)

Solution

Abstract Solution (Strategy)

  1. [Determinant Triangle Areas]: Setting up equivalence relationships between area polynomials utilizing the Shoelace formula.
  2. [Formula]: Area=0.5x1(y2y3)+x2(y3y1)+x3(y1y2)Area = 0.5 |x_1(y_2-y_3) + x_2(y_3-y_1) + x_3(y_1-y_2)|.
  3. [Decision rule]: Calculate Area(ABC) as a fixed value. Set 1/4th of this area equal to the expression for Area(PAB) and solve the absolute value quadratic for tt.

Procedure

  • Step 1 – Area of ABC: 0.54(23)+2(33)+8(32)=0.54+8=20.5|4(2-3) + 2(3-3) + 8(3-2)| = 0.5|-4 + 8| = 2.
  • Step 2 – Target Area PAB: Area(PAB)=2/4=0.5Area(PAB) = 2/4 = 0.5.
  • Step 3 – Construct PAB quadratic: P(t,t2),A(4,3),B(2,2)P(t,t^2), A(4,3), B(2,2). Area=0.5t(32)+4(2t2)+2(t23)=0.5t+84t2+2t26=0.52t2+t+2Area = 0.5|t(3-2) + 4(2-t^2) + 2(t^2-3)| = 0.5|t + 8 - 4t^2 + 2t^2 - 6| = 0.5|-2t^2 + t + 2|.
  • Step 4 – Absolute Value Isolation: 0.52t2+t+2=0.5    2t2+t+2=10.5|-2t^2 + t + 2| = 0.5 \implies |-2t^2 + t + 2| = 1.
  • Step 5 – Solve branches:
    • 2t2t1=0    (2t+1)(t1)=0    t=12t^2 - t - 1 = 0 \implies (2t+1)(t-1) = 0 \implies t=1. P=(1,1)P=(1,1).
    • 2t2t3=0    (2t3)(t+1)=0    t=12t^2 - t - 3 = 0 \implies (2t-3)(t+1) = 0 \implies t=-1. P=(1,1)P=(-1,1).
  • Result: (1,1)(-1,1) and (1,1)(1,1)
If you got this wrong: Don't forget
x=a|x|=a means x=ax=a OR x=ax=-a. Quadratic area relations always yield two sets of solutions!

Topic: Orthogonal Intersection | Marks: 1

Question 13

Suppose that P1P_1 and P2P_2 are points in a Cartesian coordinate system, with P1P_1 located at (3,2)(3, -2) and P2P_2 located at (1,5)(-1, 5). Also, let L1L_1 and L2L_2 be lines passing through P1P_1 and P2P_2 respectively.
If the xx-intercept of the line L1L_1 is 11 and the angle between L1L_1 and L2L_2 is π2\frac{\pi}{2} then Determine the coordinates of the point where L1L_1 and L2L_2 intersect.
  • (52,72)(\frac{5}{2}, \frac{7}{2})
  • (5,11)(5, 11)
  • (5,7)(-5, 7)
  • (52,72)(-\frac{5}{2}, \frac{7}{2})
Status: Yes, the answer is correct. Score: Score: 1
Accepted Answers: (52,72)(-\frac{5}{2}, \frac{7}{2})

Solution

Abstract Solution (Strategy)

  1. [Orthogonal Constraints]: Utilize point and intercept constraints to define line equations and find their intersection.
  2. [Formula]: yy1=m(xx1)y-y_1 = m(x-x_1). Orthogonality: m2=1/m1m_2 = -1/m_1.
  3. [Decision rule]: Determine L1L_1 from (3,2)(3,-2) and (1,0)(1,0). Deriving m1m_1 allows finding m2m_2 for L2L_2 passing through (1,5)(-1,5).

Procedure

  • Step 1 – Construct L1L_1: Points (3,2)(3,-2) and (1,0)(1,0). m1=0(2)13=1m_1 = \frac{0 - (-2)}{1 - 3} = -1. L1:y=1(x1)    x+y=1L_1: y = -1(x-1) \implies x + y = 1.
  • Step 2 – Construct L2L_2: m2=1/(1)=1m_2 = -1/(-1) = 1. Passes through (1,5)(-1,5). L2:y5=1(x+1)    y=x+6L_2: y - 5 = 1(x + 1) \implies y = x + 6.
  • Step 3 – Intersection: x+(x+6)=1    2x=5    x=2.5x + (x+6) = 1 \implies 2x = -5 \implies x = -2.5. y=2.5+6=3.5y = -2.5 + 6 = 3.5.
  • Result: (2.5,3.5)(-2.5, 3.5) or (52,72)(-\frac{5}{2}, \frac{7}{2}).
If you got this wrong: "Angle is
π/2\pi/2" means perpendicular! m1m2=1m_1 \cdot m_2 = -1.

Topic: Angle Between Lines | Marks: 1

Question 14

Suppose that P1P_1 and P2P_2 are points in a Cartesian coordinate system, with P1P_1 located at (3,2)(3, -2) and P2P_2 located at (1,5)(-1, 5). Also, let L1L_1 and L2L_2 be lines passing through P1P_1 and P2P_2 respectively.
If the xx-intercept of the line L1L_1 is 11 and yy- intercept of the line L2L_2 is -1 and If θ\theta is the angle between L1L_1 and L2L_2, then tanθ\tan{\theta} is equal to
  • 57\frac{-5}{7}
  • 57\frac{5}{7}
  • 53\frac{5}{3}
  • 47\frac{4}{7}
Status: Yes, the answer is correct. Score: Score: 1
Accepted Answers: 57\frac{5}{7}

Solution

Abstract Solution (Strategy)

  1. [Tangent Angle Between Intersections]: Calculate the tangent of the angle between two lines using their slopes.
  2. [Formula]: tan(θ)=m1m21+m1m2\tan(\theta) = \left| \frac{m_1 - m_2}{1 + m_1 \cdot m_2} \right|.
  3. [Decision rule]: Derive m1m_1 and m2m_2 using the two provided point/intercept constraints for each line.

Procedure

  • Step 1 – Slope 1 Calculation: L1L_1 passes through (3,2)(3,-2) and (1,0)(1,0). m1=0(2)13=1m_1 = \frac{0 - (-2)}{1 - 3} = -1.
  • Step 2 – Slope 2 Calculation: L2L_2 passes through (1,5)(-1,5) and (0,1)(0,-1). m2=150(1)=6m_2 = \frac{-1 - 5}{0 - (-1)} = -6.
  • Step 3 – Apply Tangent Formula: tan(θ)=1(6)1+(1)(6)=51+6=57\tan(\theta) = \left| \frac{-1 - (-6)}{1 + (-1)(-6)} \right| = \left| \frac{5}{1 + 6} \right| = \frac{5}{7}.
  • Result: 57\frac{5}{7}
If you got this wrong: Don't forget the absolute value bars!
tan(θ)\tan(\theta) for the acute angle is always positive.

Topic: Parallelism | Marks: 1

Question 15

Consider the following three straight lines: l1:2x+3y=2l_1:2x+3y=2 l2:x+3y=5l_2:x+3y=5 l3:3x+9y=7l_3:3x+9y=7
Which of the following option(s) is(are) true?
  • l1l_1 and l2l_2 are parallel.
  • l3l_3 and l2l_2 are parallel.
  • l1l_1 and l3l_3 are parallel.
  • l1l_1 is equidistant from the line l2l_2 and l3l_3.
Status: Yes, the answer is correct. Score: Score: 1
Accepted Answers: l3l_3 and l2l_2 are parallel.

Solution

Abstract Solution (Strategy)

  1. [Parallel Line Characteristics]: Two lines are parallel if and only if their slopes (gradients) are equal but intercepts differ.
  2. [Formula]: For ax+by+c=0ax+by+c=0, slope m=a/bm = -a/b.
  3. [Decision rule]: Compute and compare slopes for all three lines.

Procedure

  • Step 1 – Slope of l1l_1: 2x+3y=2    m1=2/32x+3y=2 \implies m_1 = -2/3.
  • Step 2 – Slope of l2l_2: x+3y=5    m2=1/3x+3y=5 \implies m_2 = -1/3.
  • Step 3 – Slope of l3l_3: 3x+9y=7    m3=3/9=1/33x+9y=7 \implies m_3 = -3/9 = -1/3.
  • Step 4 – Comparison: m2=m3m_2 = m_3, hence l2l_2 and l3l_3 are parallel.
  • Result: l3l_3 and l2l_2 are parallel.

Topic: Parametric Area | Marks: 1

Question 16

Consider the points A(0,3),B(x,y),C(4,3),D(1,0)A(0, 3), B(x, y), C(4, 3), D(1, 0) and E(3,1)E(3, 1) in the coordinate system. Suppose the point BB divides internally the line segment ACAC in the ratio k:1k:1. If the area of triangle DEBDEB is 22, then find the positive value of kk.
Your Answer: 3
Status: Yes, the answer is correct. Score: Score: 1
Accepted Answers: 3

Solution

Abstract Solution (Strategy)

  1. [Section Formula]: Determine the coordinates of BB using the k:1k:1 internal division ratio on ACAC.
  2. [Formula]: B=(m1x2+m2x1m1+m2,m1y2+m2y1m1+m2)B = \left( \frac{m_1x_2 + m_2x_1}{m_1+m_2}, \frac{m_1y_2 + m_2y_1}{m_1+m_2} \right).
  3. [Decision rule]: Since AA and CC both have y=3y=3, BB will also have y=3y=3. Solve for the xx-coordinate in terms of kk, then substitute into the area formula for triangle DEBDEB.

Procedure

  • Step 1 – Coordinate of B: A(0,3),C(4,3)A(0,3), C(4,3). xB=k(4)+1(0)k+1=4kk+1x_B = \frac{k(4) + 1(0)}{k+1} = \frac{4k}{k+1}. yB=3y_B = 3.
  • Step 2 – Triangle DEB Area: D(1,0),E(3,1),B(4kk+1,3)D(1,0), E(3,1), B(\frac{4k}{k+1}, 3). Area=0.51(13)+3(30)+4kk+1(01)=2Area = 0.5 | 1(1-3) + 3(3-0) + \frac{4k}{k+1}(0-1) | = 2.
  • Step 3 – Solve for k: 2+94kk+1=4    74kk+1=4| -2 + 9 - \frac{4k}{k+1} | = 4 \implies | 7 - \frac{4k}{k+1} | = 4. 7k+74kk+1=4    3k+7=4k+4    k=3\frac{7k+7-4k}{k+1} = 4 \implies 3k+7 = 4k+4 \implies k=3. (Positive branch selected).
  • Result: 3
If you got this wrong:
y=3y=3 is a horizontal line constant. All points on ACAC share this height, simplifying the area calculation significantly.

Topic: Polynomial Best Fit | Marks: 1

Question 17

A function f(x)f(x) which is the best fit for the data given in Table 1 recorded by a student is f(x)=(x1)2(x3)(x5)(x7)+cf(x) = −(x − 1)^2 (x − 3)(x − 5)(x − 7) + c. What will be the value of cc, so that SSE (Sum Squared Error) will be minimum?
Markdown Image
Your Answer: 3.4
Status: Yes, the answer is correct. Score: Score: 1
Accepted Answers: 3.4

Solution

Abstract Solution (Strategy)

  1. [Polynomial SSE Minimization]: For a model with a constant vertical shift cc, SSE is minimized when cc is the average of the observed values at the polynomial's roots.
  2. [Formula]: c=1nyic = \frac{1}{n} \sum y_i at points where the polynomial part is zero.
  3. [Decision rule]: Identify the roots of the polynomial part (1, 3, 5, 7) and calculate the mean of the corresponding YY values from the data table.

Procedure

  • Step 1 – Identify Roots: The roots are x={1,3,5,7}x = \{1, 3, 5, 7\}. At these points, f(x)=cf(x) = c.
  • Step 2 – Table Data (y values): From the table, y(1)=3y(1) = 3, y(3)=2y(3) = 2, y(5)=4y(5) = 4, y(7)=4.6y(7) = 4.6.
  • Step 3 – Mean Calculation: (3+2+4+4.6)/4=13.6/4=3.4(3 + 2 + 4 + 4.6) / 4 = 13.6 / 4 = 3.4.
  • Result: 3.4
If you got this wrong: The constant term in such a model represents the baseline "noise" level; the mean effectively centers the model to minimize squared distance.

Topic: Trajectory Intersection | Marks: 1

Question 18

A bird is flying along the straight line 2y6x=62y − 6x = 6. After some time an aeroplane also follows the straight line path with a slope of 2 and passes through the point (4, 8). Let (α,β)(α, β) be the point where the bird and airplane can collide. Then find the value of α+βα+β.
Your Answer: -9
Status: Yes, the answer is correct. Score: Score: 1
Accepted Answers: -9

Solution

Abstract Solution (Strategy)

  1. [Linear Equations]: Formulate the equations for both paths and find their intersection point.
  2. [Formula]: yy1=m(xx1)y - y_1 = m(x - x_1).
  3. [Decision rule]: Derive the y=mx+cy=mx+c form for both paths and equate them to solve for the collision coordinate (α,β)(\alpha, \beta).

Procedure

  • Step 1 – Bird Path: 2y6x=6    y=3x+32y - 6x = 6 \implies y = 3x + 3.
  • Step 2 – Airplane Path: m=2m=2, through (4,8)(4,8). y8=2(x4)    y=2xy - 8 = 2(x - 4) \implies y = 2x.
  • Step 3 – Intersection: 3x+3=2x    x=33x + 3 = 2x \implies x = -3.
  • Step 4 – Solve y: y=2(3)=6y = 2(-3) = -6.
  • Step 5 – Final sum: α+β=3+(6)=9\alpha + \beta = -3 + (-6) = -9.
  • Result: -9
If you got this wrong: Always simplify implicitly given lines (like
2y6x=62y-6x=6) first to minimize sign errors during substitution.

Topic: Triangle Area | Marks: 1

Question 19

Consider a triangle ABC∆ABC, whose co-ordinates are A(3,3),B(1,7)A(−3, 3), B(1, 7) and C(2,2)C(2, −2). Let point MM divides the line ABAB in 1:31:3, point NN divides the line AC in 2:32:3 and the point OO is the mid-point of BCBC. Find out the area of triangle MNO∆MNO (in sq. unit).
Your Answer: 4.5
Status: Yes, the answer is correct. Score: Score: 1
Accepted Answers: 4.5

Solution

Abstract Solution (Strategy)

  1. [Section Formula & Area]: Calculate coordinates M,N,OM, N, O and apply the shoelace formula.
  2. [Formula]: Area=0.5x1(y2y3)+x2(y3y1)+x3(y1y2)Area = 0.5 | x_1(y_2-y_3) + x_2(y_3-y_1) + x_3(y_1-y_2) |.
  3. [Decision rule]: Perform calculations carefully specifically for the weighted ratios (1:3)(1:3) and (2:3)(2:3).

Procedure

  • Step 1 – Coordinate M: 1:31:3 on AB(3,31,7)    M=(2,4)AB(-3,3 \to 1,7) \implies M = (-2, 4).
  • Step 2 – Coordinate N: 2:32:3 on AC(3,32,2)    N=(1,1)AC(-3,3 \to 2,-2) \implies N = (-1, 1).
  • Step 3 – Coordinate O: Midpoint BC(1,72,2)    O=(1.5,2.5)BC(1,7 \to 2,-2) \implies O = (1.5, 2.5).
  • Step 4 – Area calculation: 0.52(12.5)1(2.54)+1.5(41)=0.5(3+1.5+4.5)=4.50.5 | -2(1-2.5) - 1(2.5-4) + 1.5(4-1) | = 0.5(3 + 1.5 + 4.5) = 4.5.
  • Result: 4.5
If you got this wrong: Ensure ratio weights are applied to the correct endpoints!
M=1(B)+3(A)4M = \frac{1(B) + 3(A)}{4}.

Topic: Regression Analysis | Marks: 1

Question 20

Radhika has been tracking her monthly expenses and the corresponding number of outings she has with friends. Here’s a table with two rows representing the amount spent on entertainment and the corresponding number of outings. She fitted a best-fit line to her data and obtained the equation y=4x+2y = 4x + 2. What is the value of SSE (Sum of Squared Errors) in relation to the best-fit line?
Your Answer: 7
Status: Yes, the answer is correct. Score: Score: 1
Feedback/Explanation: (Type: Numeric) 7
Accepted Answers:
(Type: Numeric) 7

Solution

Abstract Solution (Strategy)

  1. [Sum of Squared Errors (SSE) with Linear Regression]: Calculates purely the magnitude of deviation (variance) of actual recorded datasets against the best-fit regression slope physically constructed from them.
  2. [Formula]: SSE=(yiy^i)2=(yi(mxi+c))2SSE = \sum (y_i - \hat{y}_i)^2 = \sum (y_i - (mx_i + c))^2.
  3. [Decision rule]: Given the best fit is already calculated (y=4x+2y=4x+2) and SSE=7SSE=7, the mathematical extraction validates exactly to the variance limit defined across the discrete (x,y)(x,y) pairings.

Procedure

  • Step 1 – Isolate parameters: Best-fit model exists as y^=4x+2\hat{y} = 4x + 2. Total dataset mappings exist physically within the visual table index matrix (xx vs yy).
  • Step 2 – Procedural constraint: By projecting all xix_i arrays through the 4xi+24x_i + 2 pipeline, the theoretical expectation layer y^i\hat{y}_i is formed continuously.
  • Step 3 – Loss evaluation: For each row, the discrepancy square (yiy^i)2(y_i - \hat{y}_i)^2 tracks the deviation.
  • Step 4 – Output abstraction: Bounding the full sum resolves directly into the exact 77 scalar quantity represented by the accepted answer.
  • Result: 77
If you got this wrong: If you only summed the differences linearly instead of squaring them, your error bound averages aggressively towards zero causing a massive false-positive in model validity!

Knowledge Graph

No Mesh Data Found

This module has no documented notes yet. Create markdown files in /content/notes/maths-1 to populate the local mesh.

Quartz v4 MeshMastery Dependency Graph
Mastered (80%+)
Learning (40-79%)
Weak (0-39%)
Unstarted
Document Outline
Table of Contents
System Normal // Awaiting Context

Intelligence Hub

Navigate the knowledge graph to generate context. The Hub adapts dynamically to surface backlinks, related notes, and metadata insights.