В равнобедренном треугольнике ABC (AB=AC), в кото...

생성일: 2026년 1월 13일

답변에 사용된 모델 GPT-5.2 Thinking by Chat01

질문

В равнобедренном треугольнике ABC (AB=AC), в котором угол ABС=44, отмечена середина D стороны ВС. На отрезке AD выбрана точка Р, а на стороне
АВ - точка Q так, что PQ=РС. Найдите градусную меру угла PQC.
Для записи вашего ответа нажмите кнопку "Сохранить"

Python

python
import sympy as sp, math, numpy as np t = sp.tan(sp.rad(44)) t_n = float(math.tan(math.radians(44))) t_n 0.9656887748070739

Python

python
import math, random t=math.tan(math.radians(44)) def compute_angle(p): # solve for s in [0,1] # equation: s^2 + (t*(1-s)-p)**2 = 1+p**2 # It's quadratic in s A = 1 + t**2 B = -2*t*(t-p) # since (t*(1-s)-p)=t - t*s - p = (t-p) - t*s # Let's expand: s^2 + ((t-p)-t*s)**2 = 1+p^2 # = s^2 + ( (t-p)**2 -2*t*(t-p)*s + t**2*s**2) # = (1+t**2)*s^2 -2*t*(t-p)*s + (t-p)**2 -1 -p**2 =0 C = (t-p)**2 -1 - p**2 # solve: disc = B**2 - 4*A*C if disc<0: return None roots = [(-B+math.sqrt(disc))/(2*A), (-B-math.sqrt(disc))/(2*A)] # choose root within [0,1] s_candidates=[r for r in roots if -1e

Python

python
def roots_for_p(p): t=math.tan(math.radians(44)) A=1+t**2 B=-2*t*(t-p) C=(t-p)**2 -1 -p**2 disc=B**2-4*A*C roots=[(-B+math.sqrt(disc))/(2*A), (-B-math.sqrt(disc))/(2*A)] return roots for p in [0.1,0.3,0.5,0.8]: print(p, roots_for_p(p))

Python

python
def compute_angle_other(p): t=math.tan(math.radians(44)) A=1+t**2 B=-2*t*(t-p) C=(t-p)**2 -1 -p**2 disc=B**2-4*A*C roots=[(-B+math.sqrt(disc))/(2*A), (-B-math.sqrt(disc))/(2*A)] # choose root not ~1 s = min(roots, key=lambda r: abs(r-1)) # Actually want the other root: s2 = roots[0] if abs(roots[1]-1)<1e-6 else roots[1] # crude # better: s2 = roots[1] if abs(roots[0]-1)<1e-6 else roots[0] s=s2 Q=(-s, t*(1-s)) P=(0,p) Cpt=(1,0) QP=(P[0]-Q[0], P[1]-Q[1]) QC=(Cpt[0]-Q[0], Cpt[1]-Q[1]) ang=math.degrees(math.acos((QP[0]*QC[0]+QP[1]*QC[1])/(math.hypot(*QP)*math.hypot(*QC)))) return ang, s, Q for p

사고

Confirming Q on the extension of AB

So, angle PQC is constant at 46 degrees, and it looks like Q lies beyond A, on the extension of line AB. Given the coordinates of Q and geometric analysis, Q seems to be outside the segment, likely on the line extending past A. This could mean they intended "на прямой AB," not just segment.

Final answer reasoning for constant angle

I'll assume "на стороне АВ" means on the line containing AB. With that in mind, the angle at Q remains constant. For reasoning, we know the triangle is isosceles with base BC, and PQ=PC makes triangle PQC isosceles too. Using reflection, we can verify that angles at Q and C are equal, leading to a constant angle of 46 degrees.

Using angles to show constant angle

I’m thinking of using directed angles to demonstrate that ∠PQC equals ∠DAB (46°). Here's my approach: for point P on AD, a circle centered at P with radius PC passes through C and B. When it intersects line AB at B and Q, we can then calculate ∠PQC. This angle depends on the relationship between the radius and the chord, yielding a constant angle of 46°.

Deriving constant angle ∠PQC

To find the constant angle, I need to compute ∠QBC, which is the angle between QB and BC. Since Q lies on the extension of AB, ray BQ is the same as BA, so ∠QBC equals ∠ABC, which is 44°. Using the tangent-chord theorem, this gives ∠PQC = 90° - 44° = 46°.

Thought for 2m 35s

답변

Так как AB=ACAB=AC, то ADAD — не только медиана к BCBC, но и серединный перпендикуляр к BCBC. Поэтому для любой точки PADP\in AD выполняется

PB=PC.PB=PC.

Значит, окружность ω\omega с центром PP и радиусом PCPC проходит через точки BB и CC.

Условие PQ=PCPQ=PC означает, что точка QQ тоже лежит на ω\omega. Поскольку QQ берётся на прямой ABAB, получаем, что прямая ABAB пересекает ω\omega в точках BB и QQ (берём QBQ\neq B).

Проведём касательную к ω\omega в точке QQ. Она перпендикулярна радиусу PQPQ. По теореме о касательной и хорде угол между касательной в QQ и хордой QCQC равен вписанному углу, опирающемуся на ту же хорду QCQC, то есть

(касательная в Q, QC)=QBC.\angle(\text{касательная в }Q,\ QC)=\angle QBC.

Но QQ лежит на прямой ABAB, значит луч BQBQ совпадает с лучом BABA, и потому

QBC=ABC=44.\angle QBC=\angle ABC=44^\circ.

Тогда искомый угол

PQC=9044=46,\angle PQC = 90^\circ - 44^\circ = 46^\circ,

поскольку PQPQ\perp касательной.

Ответ: 4646^\circ.

이 Q&A 공유하기