Let a triangle have sides $a$,$b$,$c$ and $c$ is the greatest side , triangle ABC is obtuse in nature having integral sides. Find the smallest perimeter possible Given A=2B where A and B are angles of respective vertices
2026-05-15 19:57:46.1778875066
what are the integral sides possible?
135 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in GEOMETRY
- Point in, on or out of a circle
- Find all the triangles $ABC$ for which the perpendicular line to AB halves a line segment
- How to see line bundle on $\mathbb P^1$ intuitively?
- An underdetermined system derived for rotated coordinate system
- Asymptotes of hyperbola
- Finding the range of product of two distances.
- Constrain coordinates of a point into a circle
- Position of point with respect to hyperbola
- Length of Shadow from a lamp?
- Show that the asymptotes of an hyperbola are its tangents at infinity points
Related Questions in NUMBER-THEORY
- Maximum number of guaranteed coins to get in a "30 coins in 3 boxes" puzzle
- Interesting number theoretical game
- Show that $(x,y,z)$ is a primitive Pythagorean triple then either $x$ or $y$ is divisible by $3$.
- About polynomial value being perfect power.
- Name of Theorem for Coloring of $\{1, \dots, n\}$
- Reciprocal-totient function, in term of the totient function?
- What is the smallest integer $N>2$, such that $x^5+y^5 = N$ has a rational solution?
- Integer from base 10 to base 2
- How do I show that any natural number of this expression is a natural linear combination?
- Counting the number of solutions of the congruence $x^k\equiv h$ (mod q)
Related Questions in TRIGONOMETRY
- Is there a trigonometric identity that implies the Riemann Hypothesis?
- Finding the value of cot 142.5°
- Using trigonometric identities to simply the following expression $\tan\frac{\pi}{5} + 2\tan\frac{2\pi}{5}+ 4\cot\frac{4\pi}{5}=\cot\frac{\pi}{5}$
- Derive the conditions $xy<1$ for $\tan^{-1}x+\tan^{-1}y=\tan^{-1}\frac{x+y}{1-xy}$ and $xy>-1$ for $\tan^{-1}x-\tan^{-1}y=\tan^{-1}\frac{x-y}{1+xy}$
- Sine of the sum of two solutions of $a\cos\theta + b \sin\theta = c$
- Tan of difference of two angles given as sum of sines and cosines
- Limit of $\sqrt x \sin(1/x)$ where $x$ approaches positive infinity
- $\int \ x\sqrt{1-x^2}\,dx$, by the substitution $x= \cos t$
- Why are extraneous solutions created here?
- I cannot solve this simple looking trigonometric question
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
geometry
circles
algebraic-number-theory
functions
real-analysis
elementary-set-theory
proof-verification
proof-writing
number-theory
elementary-number-theory
puzzle
game-theory
calculus
multivariable-calculus
partial-derivative
complex-analysis
logic
set-theory
second-order-logic
homotopy-theory
winding-number
ordinary-differential-equations
numerical-methods
derivatives
integration
definite-integrals
probability
limits
sequences-and-series
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
Basic conditions for enumeration
A brute force approach could enumerate triangles with integral edge lengths in order of increasing perimeter. In other words, examine partitions of increasingly larger numbers into three summands, taking the triangle inequality into account. What we'd need is some easy approach to detect this $A=2B$ condition. From the law of cosines, we get
$$\cos A=\frac{-a^2+b^2+c^2}{2bc}\qquad \cos B=\frac{a^2-b^2+c^2}{2ac}$$
We also know that $\cos A=\cos(2B)=2\cos^2B-1$ so we obtain the equation
$$ \frac{-2a^2+b^2+c^2}{2bc}=2\left(\frac{a^2-b^2+c^2}{2ac}\right)^2-1 \\ -a^4c + a^2b^2c + a^2c^3 = a^4b - 2a^2b^3 + b^5 - 2b^3c^2 + bc^4 \\ a^4b - 2a^2b^3 + b^5 + a^4c - a^2b^2c - 2b^3c^2 - a^2c^3 + bc^4 = 0 \\ (b + c)(-a - b + c)(a - b + c)(-a^2 + b^2 + bc) = 0 $$
The first factor would cannot be satisfied for positive edge lengths. The second translates to $c=a+b$ which would be a degenerate triangle. Likewise the third, $b=a+c$. So the only condition which remains is
$$a^2-b^2-bc=0\tag{1}$$
Now do a bit of enumeration, in order of increasing perimeter, and you find the following combination which satisfies both this and the triangle inequality:
$$a=15\qquad b=9\qquad c=16$$
However, the resulting triangle is not obtuse. So let's add a condition for that:
$$a^2+b^2<c^2$$
Now you get the solution
$$a=28\qquad b=16\qquad c=33$$
Avoiding the enumeration
If you want to avoid the brute force enumeration, start with this reformulation of $\text{(1)}$:
$$c=\frac{a^2-b^2}{b}\in\mathbb N$$
So $a^2$ must be a multiple of $b$. On the other hand, $a$ itself cannot be a multiple of $b$ because otherwise, $bc$ would also be a multiple of $b^2$ so $c$ would be a multiple of $b$, and you could divide all lengths by $b$ to obtain a smaller solution. So for some $s,t,u\in\mathbb N$ you have
$$a=stu\qquad b=s^2u\qquad c=\frac{s^2t^2u^2-s^4u^2}{s^2u}=(t^2-s^2)u$$
You can see that $u=1$ is required for minimality, otherwise you could again divide all lengths by $u$. So $b=s^2=\gcd(a,b)^2$ is a square number.
The triangle inequality states
\begin{gather*} c=t^2-s^2<st+s^2=a+b \\ t^2-st-2s^2<0 \\ -s<t<2s \tag2 \end{gather*}
An obtuse angle at $c$ turns into
\begin{gather*} a^2+b^2=s^2t^2+s^4<t^4-2t^2s^2+s^4=(t^2-s^2)^2=c^2\\ 3s^2t^2<t^4 \\ 3s^2<t^2 \\ \sqrt3s<t \tag3 \end{gather*}
Taking $\text{(2)}$ and $\text{(3)}$ together, you get $\sqrt3s<t<2s$ which you can turn into the condition $\sqrt3s<2s-1$ since $t$, being an integer, must be at least one smaller than $s$. This in turn becomes $s>\frac1{2-\sqrt3}\approx3.7$ so $s=4$ is the first case where both conditions can be satisfied. You get
$$6.9\approx4\sqrt3<t<8$$
This can be satisfied by $t=7$, leading the result above:
$$a=st=4\cdot7=28\qquad b=s^2=4^2=16\qquad c=t^2-s^2=7^2-4^2=33$$
Larger $s$ lead to larger minimal values for $t$ which together lead to larger perimeter. Therefore the above solution is indeed minimal.