Past Year QuestionsIPMAT IndoreQACircles

IPMAT Indore Circles — PYPs

13 solved Circles previous year questions (PYQs) from IPMAT Indore past year papers — attempt each and check the answer.

Free SolutionsNo Login13 Questions
Q1:ipmat indore 2020QACirclesMediumSA · TITA
The shortest distance from the point (4,3)(-4,3) to the circle (x2+y2=1)(x^2 + y^2 = 1) is __________.
Enter your answer to attempt
The Setup: This is a coordinate geometry problem finding the shortest path from an external point to a circle's boundary. Think of the circle as a forcefield; the shortest route is always a straight line aimed dead center, and we just subtract the forcefield's radius from the total distance. Step 1: Deconstruct the circle's equation. The given equation is x2+y2=1x^2+y^2=1. This perfectly matches the standard form (xh)2+(yk)2=r2(x-h)^2+(y-k)^2=r^2. Thus, the center is the origin (0,0)(0,0) and the radius is r=1=1r=\sqrt{1}=1. Step 2: Calculate absolute distance to center. We use the Euclidean distance formula between the point (4,3)(-4,3) and the center (0,0)(0,0): d=(x2x1)2+(y2y1)2d=\sqrt{(x_2-x_1)^2+(y_2-y_1)^2} d=(40)2+(30)2d=\sqrt{(-4-0)^2+(3-0)^2} d=(4)2+(3)2d=\sqrt{(-4)^2+(3)^2} d=16+9=25=5d=\sqrt{16+9}=\sqrt{25}=5 Step 3: Confirm the point is outside. This step is not optional - the *subtract the radius* move only works for an external point. Since d=5>r=1d=5>r=1, the point sits outside the circle. (Had it been inside, the shortest distance would have been rdr-d instead.) Step 4: Find the boundary distance. The total distance to the core is 55 units. Because the circle's radius occupies 11 unit of that path, the remaining gap from the point to the edge is simply the difference: 51=45-1=4. Final Answer: 4
Q2:ipmat indore 2023QACirclesHardSA · TITA
In the xy-plane let A=(2,0),B=(2,0)A = (- 2, 0), B = (2, 0) . Define the set S as the collection of all points C on the circle x2+y2=4x ^ 2 + y ^ 2 = 4 such that the area of the triangle ABC is an integer. The number of points in the set S is
Enter your answer to attempt
The Setup: Points A=(2,0)A=(-2,0) and B=(2,0)B=(2,0) lie on the xx-axis. We must find all points CC on the circle x2+y2=4x^2+y^2=4 such that the area of ABC\triangle ABC is an integer. Step 1: Define the area of the triangle. The base of the triangle is the segment ABAB connecting (2,0)(-2,0) and (2,0)(2,0). Its length is exactly 44. Let point CC have coordinates (x,y)(x, y). The height of the triangle relative to base ABAB is the absolute value of the yy-coordinate, y|y|. Area=12×base×height=12×4×y=2y\text{Area} = \frac{1}{2} \times \text{base} \times \text{height} = \frac{1}{2} \times 4 \times |y| = 2|y| Step 2: Establish integer constraints for the area. We require the Area (2y2|y|) to be a positive integer kk (a valid geometric triangle must have an area strictly greater than 0). 2y=k    y=k22|y| = k \implies |y| = \frac{k}{2} Since CC lies on the circle x2+y2=4x^2+y^2=4, the maximum possible value for y|y| is the radius, 22. 0<y2    0<k22    k{1,2,3,4}0 < |y| \le 2 \implies 0 < \frac{k}{2} \le 2 \implies k \in \{1, 2, 3, 4\} Step 3: Map the valid area states back to coordinate points. For each valid kk, we substitute y=k/2|y| = k/2 back into the circle equation x2=4y2x^2 = 4 - y^2 to count the distinct points: * If k=1k = 1: y=0.5    y=±0.5|y| = 0.5 \implies y = \pm 0.5. x2=40.25=3.75x^2 = 4 - 0.25 = 3.75. This yields 22 values for xx per yy, giving 44 points. * If k=2k = 2: y=1    y=±1|y| = 1 \implies y = \pm 1. x2=41=3x^2 = 4 - 1 = 3. This gives 44 points. * If k=3k = 3: y=1.5    y=±1.5|y| = 1.5 \implies y = \pm 1.5. x2=42.25=1.75x^2 = 4 - 2.25 = 1.75. This gives 44 points. * If k=4k = 4: y=2    y=±2|y| = 2 \implies y = \pm 2. x2=44=0x^2 = 4 - 4 = 0. Here x=0x = 0 uniquely, giving exactly 11 point for y=2y=2 and 11 point for y=2y=-2, totaling 22 points. Step 4: Sum the valid points. Total Points=4+4+4+2=14\text{Total Points} = 4 + 4 + 4 + 2 = 14 Final Answer: 14
Q3:ipmat indore 2025QACirclesMediumSA · TITA
A circle of radius 13 cm touches the adjacent sides AB and BC of a square ABCD at M and N, respectively. If AB=18AB=18 cm and the circle intersects the other two sides CD and DA at P and Q, respectively, then the area, in sq. cm, of triangle PMD is
Enter your answer to attempt
The Setup: We are dropping into a coordinate geometry map for this one. We have a square bounding box and a circle spawning inside it, touching the walls. By setting a strategic origin point, we can turn this messy geometry problem into a pure algebra speedrun. I have fully audited the coordinates to ensure the hitbox interactions are completely accurate. Step 1: Setting the Origin (The Spawn Point) Let's anchor the square's corner BB exactly at the origin (0,0)(0,0). Since the square's side length is AB=18AB = 18 cm, we can lock in the corner coordinates: * B=(0,0)B = (0,0) * C=(18,0)C = (18,0) * A=(0,18)A = (0,18) * D=(18,18)D = (18,18) Step 2: Defining the Circle's Hitbox The circle has a radius r=13r = 13 cm. It touches side ABAB (which sits on the y-axis) and side BCBC (which sits on the x-axis). Because it is perfectly tangent to both axes in the positive quadrant, its center OO must be at (r,r)(r, r), which is (13,13)(13, 13). The equation of the circle is locked in: (x13)2+(y13)2=132(x-13)^2 + (y-13)^2 = 13^2 (x13)2+(y13)2=169(x-13)^2 + (y-13)^2 = 169 Step 3: Locating the Intersections The circle touches ABAB at MM, so MM is simply the y-intercept at (0,13)(0, 13). The circle intersects CDCD at point PP. Side CDCD is the vertical line x=18x = 18. Substitute x=18x = 18 into the circle's equation to find PP's exact y-coordinate: (1813)2+(y13)2=169(18-13)^2 + (y-13)^2 = 169 52+(y13)2=1695^2 + (y-13)^2 = 169 25+(y13)2=16925 + (y-13)^2 = 169 (y13)2=144(y-13)^2 = 144 y13=±12y-13 = \pm 12 Since PP must lie on the physical segment CDCD, its y-coordinate must be between 0 and 18. So we take the subtraction route: y=1312=1y = 13 - 12 = 1. Our point PP is officially at (18,1)(18, 1). Step 4: Calculating the Triangle Area We need the area of PMD\triangle PMD. Let's pull the coordinates of our vertices: * M=(0,13)M = (0, 13) * P=(18,1)P = (18, 1) * D=(18,18)D = (18, 18) Notice that PP and DD both lie on the exact same vertical line (x=18x = 18). We can treat the segment PDPD as the base of our triangle to completely cheese the calculation. Base length PD=181=17PD = 18 - 1 = 17 units. The height of the triangle is the perpendicular horizontal distance from the base line (x=18x=18) back to the third point MM (at x=0x=0). Height =180=18= 18 - 0 = 18 units. Area=12×base×height\text{Area} = \frac{1}{2} \times \text{base} \times \text{height} Area=12×17×18\text{Area} = \frac{1}{2} \times 17 \times 18 Area=17×9=153\text{Area} = 17 \times 9 = 153 Step 5: The Audit (Double Check Protocol) Running the shoelace formula (determinant method) to double-check the area calculation and guarantee zero errors. Area=0.5×x1(y2y3)+x2(y3y1)+x3(y1y2)\text{Area} = 0.5 \times |x_1(y_2-y_3) + x_2(y_3-y_1) + x_3(y_1-y_2)| Area=0.5×0(118)+18(1813)+18(131)\text{Area} = 0.5 \times |0(1-18) + 18(18-13) + 18(13-1)| Area=0.5×0+18(5)+18(12)\text{Area} = 0.5 \times |0 + 18(5) + 18(12)| Area=0.5×90+216\text{Area} = 0.5 \times |90 + 216| Area=0.5×306=153\text{Area} = 0.5 \times 306 = 153 Both methods yield exactly 153. The geometry holds up perfectly. The math is flawless. Final Answer: 153
Q4:ipmat indore 2019QACirclesHardSA · TITA
The circle x2+y26x10y+k=0x^2 + y^2 - 6x - 10y + k = 0 does not touch or intersect the coordinate axes. If the point (1,4)(1, 4) does not lie outside the circle, and the range of kk is (a,b](a, b], then a+ba + b is
Enter your answer to attempt
The Setup: A circle with a floating parameter kk. We must force it to sit clear of both axes while keeping the point (1,4)(1,4) inside or on its boundary, then read off the two ends of the resulting interval. Step 1: Extract the circle's stats. Complete the square: (x3)29+(y5)225+k=0    (x3)2+(y5)2=34k(x-3)^2-9+(y-5)^2-25+k=0 \implies (x-3)^2+(y-5)^2=34-k Centre C(3,5)C(3,5) and radius r=34kr=\sqrt{34-k}. Step 0 (implicit, but state it): the circle must exist. A real circle needs r2>0r^2>0, i.e. 34k>034-k>0, so k<34k<34. Keep this in the background - it turns out to be implied by the stricter bound below, but a parameter range derived without it can silently include values where there is no circle at all. Step 2: Keep it clear of the axes. The centre sits in the first quadrant, so the distance to the y-axis is its x-coordinate 3, and to the x-axis its y-coordinate 5. Avoiding both strictly (neither touching nor intersecting) requires: r<3    34k<9    k>25r<3 \implies 34-k<9 \implies k>25 r<5    34k<25    k>9r<5 \implies 34-k<25 \implies k>9 The first is the stricter of the two, and it absorbs the second, so the binding condition is k>25k>25 - an open bound, because touching is disallowed. Step 3: Trap the point. 'does not lie outside' means on or inside the boundary, so the distance from (1,4)(1,4) to the centre is at most rr: d2=(13)2+(45)2=4+1=5    534k    k29d^2=(1-3)^2+(4-5)^2=4+1=5 \implies 5\leq 34-k \implies k\leq 29 This bound is closed, since lying exactly on the circle is permitted. Step 4: Merge and read off. Combining, 25<k2925<k\leq 29, i.e. the interval (25,29](25,29] - open at the left, closed at the right, exactly matching the (a,b](a,b] shape the question announces. That the two bounds come out with the right open/closed pairing is a good sign the conditions have been read correctly. a=25,b=29    a+b=54a=25,\quad b=29 \implies a+b=54 Final Answer: 54
Q5:ipmat indore 2024QACirclesEasyMCQ · MCQ
If the shortest distance of a given point to a given circle is 4cm4 \, \text{cm} and the longest distance is 9cm9 \, \text{cm}, then the radius of the circle is
  • A1.5cm1.5 \, \text{cm} or 13cm13 \, \text{cm}
  • B2.5cm2.5 \, \text{cm}
  • C3.5cm3.5 \, \text{cm}
  • D2.5cm2.5 \, \text{cm} or 6.5cm6.5 \, \text{cm}
Pick an option to attempt
The Setup: The shortest distance from a given point to a given circle is 4 cm4\text{ cm} and the longest distance is 9 cm9\text{ cm}. We need to find the radius of the circle. Step 1: Establish the distance relations based on the point's location. Let the circle have center OO and radius rr. Let the point be PP. The shortest and longest distances from a point to a circle lie along the straight line passing through the point and the center of the circle. Step 2: Evaluate Case 1 (Point PP is outside the circle). Shortest distance: OPr=4OP - r = 4 Longest distance: OP+r=9OP + r = 9 Subtract the two equations to isolate rr: (OP+r)(OPr)=94(OP + r) - (OP - r) = 9 - 4 2r=5    r=2.5 cm2r = 5 \implies r = 2.5\text{ cm} Step 3: Evaluate Case 2 (Point PP is inside the circle). Shortest distance: rOP=4r - OP = 4 Longest distance: r+OP=9r + OP = 9 Add the two equations to isolate rr: (rOP)+(r+OP)=4+9(r - OP) + (r + OP) = 4 + 9 2r=13    r=6.5 cm2r = 13 \implies r = 6.5\text{ cm} Final Answer: 2.5 cm2.5\text{ cm} or 6.5 cm6.5\text{ cm}
Q6:ipmat indore 2023QACirclesMediumMCQ · MCQ
Which of the following straight lines are both tangent to the circle x2+y26x+4y12=0x ^ 2 + y ^ 2 - 6x + 4y - 12 = 0?
  • A4x+3y+19=0,4x+3y31=04x+3y+19=0, 4x+3y-31=0
  • B4x+3y19=0,4x+3y+31=04x+3y-19=0, 4x+3y+31=0
  • C4x+3y19=0,4x+3y31=04x+3y-19=0, 4x+3y-31=0
  • D4x+3y+19=0,4x+3y+31=04x+3y+19=0, 4x+3y+31=0
Pick an option to attempt
The Setup: We are asked to identify which pair of straight lines are both tangents to the circle defined by x2+y26x+4y12=0x^2+y^2-6x+4y-12=0. Step 1: Determine the center and radius of the circle. Complete the square for both xx and yy to convert the equation into standard circle form (xh)2+(yk)2=r2(x-h)^2 + (y-k)^2 = r^2: (x26x+9)+(y2+4y+4)=12+9+4(x^2 - 6x + 9) + (y^2 + 4y + 4) = 12 + 9 + 4 (x3)2+(y+2)2=25(x - 3)^2 + (y + 2)^2 = 25 The center of the circle is C=(3,2)C = (3, -2) and the radius is r=25=5r = \sqrt{25} = 5. Step 2: Apply the tangent distance formula. For a line Ax+By+C=0Ax + By + C = 0 to be tangent to a circle, the perpendicular distance from the circle's center to the line must exactly equal the radius rr. Looking at the options, all candidate lines have the form 4x+3y+c=04x + 3y + c = 0. Set the perpendicular distance from (3,2)(3, -2) to the line equal to 55: 4(3)+3(2)+c42+32=5\frac{|4(3) + 3(-2) + c|}{\sqrt{4^2 + 3^2}} = 5 126+c25=5\frac{|12 - 6 + c|}{\sqrt{25}} = 5 6+c5=5\frac{|6 + c|}{5} = 5 6+c=25|6 + c| = 25 Step 3: Solve for the constant cc. This absolute value equation yields two valid cases for cc: Case 1: 6+c=25    c=196 + c = 25 \implies c = 19 Case 2: 6+c=25    c=316 + c = -25 \implies c = -31 The two tangent lines are 4x+3y+19=04x + 3y + 19 = 0 and 4x+3y31=04x + 3y - 31 = 0. Final Answer: 4x+3y+19=0,4x+3y31=04x+3y+19=0,4x+3y-31=0
Q7:ipmat indore 2025QACirclesMediumMCQ · MCQ
A circle touches the y-axis at (0,4)(0,4) and passes through the point (2,0)(-2,0). Then the radius of the circle is
  • A44
  • B55
  • C66
  • D77
Pick an option to attempt
The Setup: We are doing some coordinate geometry map reconnaissance. If a circle physically touches the y-axis at a specific point, it is basically giving away its center's y-coordinate for free. It also tells us that the radius is exactly equal to the horizontal distance from the center to the y-axis. Think of the center as the player and the radius as the exact range of its hitbox. Step 1: Establish the center and the radius. Since the circle touches the y-axis at (0,4)(0,4), the center must lie directly on the horizontal line y=4y=4. Let the center be (h,4)(h, 4). Because the y-axis (x=0x=0) is a tangent line, the radius rr is just the absolute value of the x-coordinate: r=hr = |h|. Step 2: Build the circle's equation. The standard equation of a circle is (xh)2+(yk)2=r2(x - h)^2 + (y - k)^2 = r^2. Substitute our known center (h,4)(h, 4) and radius squared r2=h2r^2 = h^2 into the mainframe: (xh)2+(y4)2=h2(x - h)^2 + (y - 4)^2 = h^2 Step 3: Use the waypoint to solve for hh. The problem states the circle passes through (2,0)(-2,0). This is a verified coordinate on the circle's path, so we can plug x=2x = -2 and y=0y = 0 straight into our equation to see what happens. (2h)2+(04)2=h2(-2 - h)^2 + (0 - 4)^2 = h^2 Expand the binomial (remember that (2h)2(-2 - h)^2 is exactly the same as (2+h)2(2 + h)^2) and square the 4-4: 4+4h+h2+16=h24 + 4h + h^2 + 16 = h^2 Step 4: Simplify and secure the radius. Subtract h2h^2 from both sides to instantly nerf the quadratic down to a linear equation: 4h+20=04h + 20 = 0 4h=204h = -20 h=5h = -5 So, the center of our circle is located at (5,4)(-5, 4). Since the radius rr is the absolute distance h|h|, we just take the positive value. r=5=5r = |-5| = 5 The math is flawless. Final Answer: 55
Q8:ipmat indore 2019QACirclesHardMCQ · MCQ
A chord is drawn inside a circle, such that the length of the chord is equal to the radius of the circle. Now, two circles are drawn, one on each side of the chord, each touching the chord at its midpoint and the original circle. Let k be the ratio of the areas of the bigger inscribed circle and the smaller inscribed circle, then k equals
  • A2+32 + \sqrt{3}
  • B1+21 + \sqrt{2}
  • C7+437 + 4\sqrt{3}
  • D97+56397 + 56\sqrt{3}
Pick an option to attempt
The Setup: Pure equilateral-triangle energy. With the chord equal to the radius, joining the centre to the chord's endpoints makes an equilateral triangle, which hands us the centre-to-chord distance. From there the two inscribed circles are pinned down exactly. Step 1: Find the distance to the chord. Take R=1R=1 to keep the arithmetic light. A chord of length 1 subtends an equilateral triangle with the centre, and the perpendicular distance from centre to chord is that triangle's height: d=R2(R2)2=114=32d=\sqrt{R^2-\left(\frac{R}{2}\right)^2}=\sqrt{1-\frac{1}{4}}=\frac{\sqrt{3}}{2} Step 2: Pin down each inscribed circle - this is the load-bearing step. Put the centre OO at the origin with the chord horizontal at height dd, so its midpoint is M=(0,32)M=\left(0,\tfrac{\sqrt{3}}{2}\right) and the perpendicular through MM is the yy-axis. A circle touching the chord **at MM** must have its centre on that perpendicular, at distance rr from MM. * Above the chord (away from OO): centre (0,d+r)\left(0,d+r\right). Internal tangency to the big circle means the centres are RrR-r apart, so d+r=Rrd+r=R-r, giving 2r=Rd2r=R-d - its **diameter is RdR-d**. * Below the chord (past OO): centre (0,dr)\left(0,d-r\right) with r>dr>d, so the distance to OO is rdr-d, and internal tangency gives rd=Rrr-d=R-r, i.e. 2r=R+d2r=R+d - its **diameter is R+dR+d**. So the two circles have as diameters exactly the two pieces into which MM cuts the vertical diameter of the original circle, running from MM up to (0,1)(0,1) and from MM down to (0,1)(0,-1): smaller=132,bigger=1+32\text{smaller}=1-\frac{\sqrt{3}}{2}, \qquad \text{bigger}=1+\frac{\sqrt{3}}{2} Step 3: Take the ratio of areas. Areas scale as the square of any linear measure, so the area ratio is the square of the diameter ratio: k=(1+32132)2=(2+323)2k=\left(\frac{1+\frac{\sqrt{3}}{2}}{1-\frac{\sqrt{3}}{2}}\right)^2=\left(\frac{2+\sqrt{3}}{2-\sqrt{3}}\right)^2 Rationalise the inner fraction by multiplying top and bottom by 2+32+\sqrt{3}, noting (23)(2+3)=43=1(2-\sqrt{3})(2+\sqrt{3})=4-3=1: k=((2+3)21)2=(2+3)4k=\left(\frac{(2+\sqrt{3})^2}{1}\right)^2=(2+\sqrt{3})^4 Step 4: Expand in two stages. (2+3)2=4+43+3=7+43(2+\sqrt{3})^2=4+4\sqrt{3}+3=7+4\sqrt{3} k=(7+43)2=49+563+48=97+563k=(7+4\sqrt{3})^2=49+56\sqrt{3}+48=97+56\sqrt{3} Watch the option list: 7+437+4\sqrt{3} is sitting there as option 3, and it is precisely the ratio of the diameters, not the areas. Stopping one squaring too early lands exactly on it. Final Answer: 97+56397 + 56\sqrt{3}
Q9:ipmat indore 2024QACirclesHardMCQ · MCQ
If θ\theta is the angle between the pair of tangents drawn from the point (0,72)(0,\frac{7}{2}) to the circle x2+y214x+16y+88=0x^2 + y^2 - 14x + 16y + 88 = 0, then tanθ\tan \theta equals
  • A45\frac{4}{5}
  • B25\frac{2}{5}
  • C34\frac{3}{4}
  • D2021\frac{20}{21}
Pick an option to attempt
The Setup: We are asked to find the tangent of the angle between two tangents drawn from an external point to a circle. We will use the geometric properties of right triangles formed by the tangents, the circle's radius, and the distance to the center. Step 1: Determine the circle's center and radius. The equation is x2+y214x+16y+88=0x^2 + y^2 - 14x + 16y + 88 = 0. Complete the square for xx and yy: (x214x+49)+(y2+16y+64)=88+49+64(x^2 - 14x + 49) + (y^2 + 16y + 64) = -88 + 49 + 64 (x7)2+(y+8)2=25(x - 7)^2 + (y + 8)^2 = 25 Center C=(7,8)C = (7, -8) and Radius r=25=5r = \sqrt{25} = 5. Step 2: Calculate the distance from the external point to the center. Point P=(0,7/2)P = (0, 7/2). d=(70)2+(87/2)2d = \sqrt{(7 - 0)^2 + (-8 - 7/2)^2} d=49+(23/2)2=49+5294d = \sqrt{49 + (-23/2)^2} = \sqrt{49 + \frac{529}{4}} d=196+5294=7254=5292d = \sqrt{\frac{196 + 529}{4}} = \sqrt{\frac{725}{4}} = \frac{5\sqrt{29}}{2} Step 3: Evaluate the trigonometric ratio for half the angle. Let θ\theta be the full angle between the tangents. The line connecting PP to CC bisects this angle. Let the half-angle be α\alpha. sinα=radiusdistance=55292=229\sin\alpha = \frac{\text{radius}}{\text{distance}} = \frac{5}{\frac{5\sqrt{29}}{2}} = \frac{2}{\sqrt{29}} Using the Pythagorean theorem, the adjacent side (tangent length) is (29)222=25=5\sqrt{(\sqrt{29})^2 - 2^2} = \sqrt{25} = 5. Thus, tanα=25\tan\alpha = \frac{2}{5}. Step 4: Calculate tanθ\tan\theta using the double-angle identity. tanθ=tan(2α)=2tanα1tan2α\tan\theta = \tan(2\alpha) = \frac{2\tan\alpha}{1 - \tan^2\alpha} tanθ=2(2/5)1(2/5)2=4/514/25=4/521/25\tan\theta = \frac{2(2/5)}{1 - (2/5)^2} = \frac{4/5}{1 - 4/25} = \frac{4/5}{21/25} tanθ=45×2521=2021\tan\theta = \frac{4}{5} \times \frac{25}{21} = \frac{20}{21} Final Answer: 2021\frac{20}{21}
Q10:ipmat indore 2019QACirclesHardMCQ · MCQ
On a circular path of radius 6 m a boy starts from a point AA on the circumference and walks along a chord ABAB of length 3 m. He then walks along another chord BCBC of length 2 m to reach point CC. The point BB lies on the minor arc ACAC. The distance between point CC from point AA is
  • A15+352\frac{\sqrt{15} + \sqrt{35}}{2} m
  • B88 m
  • C13\sqrt{13} m
  • D66 m
Pick an option to attempt
The Setup: Two chords laid end to end inside a circle. Each chord subtends a central angle we can extract with the cosine rule, and because BB lies on the minor arc ACAC, those two angles simply add to give the angle subtending ACAC. Step 1: Find each central angle. Let OO be the centre, R=6R=6. Triangle OABOAB has sides 6,6,36,6,3, so with AOB=α\angle AOB=\alpha: cosα=62+62322(6)(6)=72972=6372=78\cos\alpha=\frac{6^2+6^2-3^2}{2(6)(6)}=\frac{72-9}{72}=\frac{63}{72}=\frac{7}{8} Triangle OBCOBC has sides 6,6,26,6,2, so with BOC=β\angle BOC=\beta: cosβ=62+62222(6)(6)=72472=6872=1718\cos\beta=\frac{6^2+6^2-2^2}{2(6)(6)}=\frac{72-4}{72}=\frac{68}{72}=\frac{17}{18} Step 2: Add the angles. Since BB lies on the minor arc ACAC, the two central angles sit side by side without overlapping, so AOC=α+β\angle AOC=\alpha+\beta. Both are central angles in (0,π)(0,\pi), where sine is positive, so we may take the positive root: sinα=14964=158,sinβ=1289324=3518\sin\alpha=\sqrt{1-\frac{49}{64}}=\frac{\sqrt{15}}{8}, \qquad \sin\beta=\sqrt{1-\frac{289}{324}}=\frac{\sqrt{35}}{18} Now the cosine addition formula: cos(α+β)=cosαcosβsinαsinβ=7817181583518=119525144=119521144\cos(\alpha+\beta)=\cos\alpha\cos\beta-\sin\alpha\sin\beta=\frac{7}{8}\cdot\frac{17}{18}-\frac{\sqrt{15}}{8}\cdot\frac{\sqrt{35}}{18}=\frac{119-\sqrt{525}}{144}=\frac{119-5\sqrt{21}}{144} using 525=25×21=521\sqrt{525}=\sqrt{25\times 21}=5\sqrt{21}. **Step 3: Cosine rule once more, on triangle OACOAC.** AC2=62+622(6)(6)cos(α+β)=7272119521144=721195212AC^2=6^2+6^2-2(6)(6)\cos(\alpha+\beta)=72-72\cdot\frac{119-5\sqrt{21}}{144}=72-\frac{119-5\sqrt{21}}{2} AC2=144119+5212=25+5212=50+10214AC^2=\frac{144-119+5\sqrt{21}}{2}=\frac{25+5\sqrt{21}}{2}=\frac{50+10\sqrt{21}}{4} Step 4: Recognise the perfect square. The surd untangles because 50+102150+10\sqrt{21} is a square: (15+35)2=15+35+21535=50+2525=50+1021\left(\sqrt{15}+\sqrt{35}\right)^2=15+35+2\sqrt{15\cdot 35}=50+2\sqrt{525}=50+10\sqrt{21} AC=15+3524.89 mAC=\frac{\sqrt{15}+\sqrt{35}}{2}\approx 4.89\text{ m} A quick plausibility check: ACAC must be less than AB+BC=5AB+BC=5 (triangle inequality) and more than each chord, and 4.894.89 sits exactly there. The distractors fail this outright - 8 m and 6 m both exceed the straight-line distance AB+BC=5AB+BC=5, which is impossible. Final Answer: 15+352\frac{\sqrt{15} + \sqrt{35}}{2} m
Q11:ipmat indore 2026QACirclesHardMCQ · MCQ
Let ABCDABCD be a rectangle with AB=72 cmAB = 72\text{ cm} and BC=30 cmBC = 30\text{ cm}. A circle passing through points AA and CC cuts the side ABAB at PP such that AP=56 cmAP = 56\text{ cm}. The radius, in cm, of the circle is ___
  • A2215\frac{221}{5}
  • B44110\frac{441}{10}
  • C2205\frac{220}{5}
  • D2165\frac{216}{5}
Pick an option to attempt
The Setup: This is a heavy Geometry boss fight involving circumcircles and trigonometry. We have a circle passing through AA, PP, and CC, which means it acts as the circumcircle for APC\triangle APC. The absolute meta here is to find the sides of this triangle and hit it with the Extended Law of Sines (2R=asinA2R = \frac{a}{\sin A}) to unlock the radius. Math, logic, and syntax are fully locked and double-verified. Step 1: Map the arena. Let's place rectangle ABCDABCD on a coordinate plane to visualize the stats. Let A=(0,0)A = (0, 0). Since AB=72AB = 72, B=(72,0)B = (72, 0). With BC=30BC = 30, C=(72,30)C = (72, 30). Point PP lies on the line segment ABAB. Since AP=56AP = 56, we know P=(56,0)P = (56, 0). This leaves the remaining segment PBPB: PB=ABAP=7256=16 cmPB = AB - AP = 72 - 56 = 16\text{ cm} Step 2: Calculate the missing sides (Pythagorean drops). We need the side lengths of APC\triangle APC to run our trig formulas. Let's use the right-angled triangles built into the rectangle to find PCPC and ACAC. * **In right PBC\triangle PBC (right-angled at BB):** PC=PB2+BC2=162+302PC = \sqrt{PB^2 + BC^2} = \sqrt{16^2 + 30^2} PC=256+900=1156=34 cmPC = \sqrt{256 + 900} = \sqrt{1156} = 34\text{ cm} * **In right ABC\triangle ABC (right-angled at BB):** AC=AB2+BC2=722+302AC = \sqrt{AB^2 + BC^2} = \sqrt{72^2 + 30^2} AC=5184+900=6084=78 cmAC = \sqrt{5184 + 900} = \sqrt{6084} = 78\text{ cm} Step 3: Extract the Sine value. To use the Extended Law of Sines on APC\triangle APC, we need the sine of one of its angles. APC\angle APC is the easiest target because it shares a straight line with BPC\angle BPC. Since A,PA, P, and BB are collinear, APC\angle APC and BPC\angle BPC are supplementary angles (APC+BPC=180\angle APC + \angle BPC = 180^\circ). A core trigonometry rule states that supplementary angles have the exact same sine value: sin(APC)=sin(BPC)\sin(\angle APC) = \sin(\angle BPC). Let's find sin(BPC)\sin(\angle BPC) using the right PBC\triangle PBC: sin(BPC)=OppositeHypotenuse=BCPC\sin(\angle BPC) = \frac{\text{Opposite}}{\text{Hypotenuse}} = \frac{BC}{PC} sin(BPC)=3034=1517\sin(\angle BPC) = \frac{30}{34} = \frac{15}{17} Therefore, sin(APC)=1517\sin(\angle APC) = \frac{15}{17}. Step 4: Execute the Extended Law of Sines. The radius RR of the circumcircle of APC\triangle APC can be found using the side ACAC and its opposite angle APC\angle APC: 2R=ACsin(APC)2R = \frac{AC}{\sin(\angle APC)} Substitute our unlocked stats into the formula: 2R=7815172R = \frac{78}{\frac{15}{17}} 2R=78×17152R = \frac{78 \times 17}{15} Simplify the fraction by dividing 7878 and 1515 by their common factor of 33: 2R=26×1752R = \frac{26 \times 17}{5} 2R=44252R = \frac{442}{5} Divide by 2 to isolate RR: R=2215R = \frac{221}{5} Final Answer: 2215\frac{221}{5}
Q12:ipmat indore 2026QACirclesHardMCQ · MCQ
Let the circle x2+y2=2ax+2byx^2 + y^2 = 2ax + 2by intersect the x-axis at point A(α,0)A(\alpha, 0) and y-axis at point B(0,β)B(0, \beta), where αβ0\alpha\beta \neq 0. If the point C(p,q)C(p, q) lies on the chord ABAB, then p+αa+q+βb\frac{p+\alpha}{a} + \frac{q+\beta}{b} equals ___
  • A4
  • B2
  • C6
  • D3
Pick an option to attempt
The Setup: We have a Geometry coordinate clash involving a circle and a linear chord. The meta here is to find the exact intercept coordinates to define points AA and BB. Once we have those, we forge the equation of the line connecting them (chord ABAB), plug in point CC to create a fixed constraint, and then expand the target expression to sub in our locked stats. Math, logic, and syntax have been double-verified. **Step 1: Find the intercept coords (Unlock α\alpha and β\beta).** First, let's rewrite the circle equation by moving all terms to one side: x2+y22ax2by=0x^2 + y^2 - 2ax - 2by = 0 * **To find point AA (x-intercept):** Set y=0y = 0. x22ax=0    x(x2a)=0x^2 - 2ax = 0 \implies x(x - 2a) = 0 Since the problem states αβ0\alpha\beta \neq 0 (meaning neither intercept is at the origin), xx cannot be 00. Therefore, x=2ax = 2a. This locks in α=2a\alpha = 2a. * **To find point BB (y-intercept):** Set x=0x = 0. y22by=0    y(y2b)=0y^2 - 2by = 0 \implies y(y - 2b) = 0 Similarly, yy cannot be 00. Therefore, y=2by = 2b. This locks in β=2b\beta = 2b. **Step 2: Forge the equation for chord ABAB.** We have the x-intercept (2a2a) and the y-intercept (2b2b). We can instantly write the equation of the line using the standard intercept form xxint+yyint=1\frac{x}{x_{int}} + \frac{y}{y_{int}} = 1: x2a+y2b=1\frac{x}{2a} + \frac{y}{2b} = 1 Multiply the entire equation by 2 to clean up the denominators: xa+yb=2\frac{x}{a} + \frac{y}{b} = 2 Step 3: Exploit Point C's position. The problem states that point C(p,q)C(p, q) lies perfectly on this chord. That means its coordinates must satisfy the line equation. We plug in (p,q)(p, q) for (x,y)(x, y): pa+qb=2\frac{p}{a} + \frac{q}{b} = 2 This is a crucial locked stat for our final calculation. Step 4: Execute the final substitution. We now tackle the target expression: p+αa+q+βb\frac{p+\alpha}{a} + \frac{q+\beta}{b} Substitute our unlocked α\alpha and β\beta values from Step 1: =p+2aa+q+2bb= \frac{p+2a}{a} + \frac{q+2b}{b} Split the fractions to separate the variables: =pa+2aa+qb+2bb= \frac{p}{a} + \frac{2a}{a} + \frac{q}{b} + \frac{2b}{b} Simplify the terms: =pa+2+qb+2= \frac{p}{a} + 2 + \frac{q}{b} + 2 Group our locked stat together: =(pa+qb)+4= \left(\frac{p}{a} + \frac{q}{b}\right) + 4 Finally, substitute the value (22) we derived in Step 3: =2+4=6= 2 + 4 = 6 Final Answer: 6
Q13:ipmat indore 2026QACirclesMediumMCQ · MCQ
A person walks one lap along a circle at a speed vv. Thereafter, he runs one lap along the boundary of the largest square that can be inscribed in the circle at a speed 3v3v. The ratio of the time he walks to the time he runs is ___
  • A3π42\frac{3\pi}{4\sqrt{2}}
  • B12π\frac{12}{\pi}
  • C4π32\frac{4\pi}{3\sqrt{2}}
  • D3π22\frac{3\pi}{2\sqrt{2}}
Pick an option to attempt
The Setup: This is a Geometry and Time, Speed, Distance (TSD) crossover event. The meta is to define a base radius rr for the circle, calculate the walking distance (circumference) and running distance (perimeter of the inscribed square), and then use the given speeds to lock in the time equations. Finally, we divide the two time stats to secure the required ratio. Math, logic, and syntax are locked in and double-verified. **Step 1: Calculate the walking time (TwT_w).** Let the radius of the circle be rr. The walking distance is exactly one lap around the circle (the circumference): Distance (Walk)=2πrDistance\ (Walk) = 2\pi r Since the walking speed is vv, the time taken is: Tw=2πrvT_w = \frac{2\pi r}{v} Step 2: Map the inscribed square and calculate running distance. The largest square inscribed inside a circle will always have its diagonal perfectly matching the circle's diameter (2r2r). Let the side of this square be ss. Using the Pythagorean theorem for the square's diagonal: s2+s2=(2r)2    2s2=4r2    s2=2r2    s=r2s^2 + s^2 = (2r)^2 \implies 2s^2 = 4r^2 \implies s^2 = 2r^2 \implies s = r\sqrt{2} The running distance is one lap along the square's boundary (the perimeter): Distance (Run)=4s=4r2Distance\ (Run) = 4s = 4r\sqrt{2} **Step 3: Calculate the running time (TrT_r).** The person runs along the square at a speed of 3v3v. Tr=Distance (Run)Speed=4r23vT_r = \frac{Distance\ (Run)}{Speed} = \frac{4r\sqrt{2}}{3v} Step 4: Execute the final ratio drop. We need the ratio of the time he walks to the time he runs (TwTr\frac{T_w}{T_r}): Ratio=2πrv4r23vRatio = \frac{\frac{2\pi r}{v}}{\frac{4r\sqrt{2}}{3v}} Multiply by the reciprocal to simplify the fraction: Ratio=2πrv×3v4r2Ratio = \frac{2\pi r}{v} \times \frac{3v}{4r\sqrt{2}} The rr and vv variables instantly cancel out: Ratio=2π×342=6π42Ratio = \frac{2\pi \times 3}{4\sqrt{2}} = \frac{6\pi}{4\sqrt{2}} Simplify the fraction by dividing the top and bottom by 2: Ratio=3π22Ratio = \frac{3\pi}{2\sqrt{2}} Final Answer: 3π22\frac{3\pi}{2\sqrt{2}}

Browse other topics · IPMAT Indore