Back to Freecodecamp

Problem 296: Angular Bisector and Tangent

curriculum/challenges/english/blocks/project-euler-problems-201-to-300/5900f4941000cf542c50ffa7.md

latest1.1 KB
Original Source

--description--

Given is an integer sided triangle $ABC$ with $BC ≤ AC ≤ AB$. $k$ is the angular bisector of angle $ACB$. $m$ is the tangent at $C$ to the circumscribed circle of $ABC$. $n$ is a line parallel to $m$ through $B$.

The intersection of $n$ and $k$ is called $E$.

How many triangles $ABC$ with a perimeter not exceeding $100\,000$ exist such that $BE$ has integral length?

--hints--

angularBisectorAndTangent() should return 1137208419.

js
assert.strictEqual(angularBisectorAndTangent(), 1137208419);

--seed--

--seed-contents--

js
function angularBisectorAndTangent() {

  return true;
}

angularBisectorAndTangent();

--solutions--

js
// solution required