2018-10-10 18:03:03 -04:00
---
id: 5900f4941000cf542c50ffa7
2021-02-06 04:42:36 +00:00
title: 'Problem 296: Angular Bisector and Tangent'
2018-10-10 18:03:03 -04:00
challengeType: 5
2021-02-06 04:42:36 +00:00
forumTopicId: 301948
2021-01-13 03:31:00 +01:00
dashedName: problem-296-angular-bisector-and-tangent
2018-10-10 18:03:03 -04:00
---
2020-12-16 00:37:30 -07:00
# --description--
2020-02-18 01:40:55 +09:00
2021-02-06 04:42:36 +00:00
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.
2020-02-18 01:40:55 +09:00
2021-02-06 04:42:36 +00:00
The intersection of n and k is called E.
2020-02-18 01:40:55 +09:00
2021-02-06 04:42:36 +00:00
How many triangles ABC with a perimeter not exceeding 100 000 exist such that BE has integral length?
2018-10-10 18:03:03 -04:00
2020-12-16 00:37:30 -07:00
# --hints--
2018-10-10 18:03:03 -04:00
2021-02-06 04:42:36 +00:00
`euler296()` should return 1137208419.
2018-10-10 18:03:03 -04:00
```js
2020-12-16 00:37:30 -07:00
assert.strictEqual(euler296(), 1137208419);
2018-10-10 18:03:03 -04:00
```
2021-01-13 03:31:00 +01:00
# --seed--
## --seed-contents--
```js
function euler296() {
return true;
}
euler296();
```
2020-12-16 00:37:30 -07:00
# --solutions--
2020-08-13 17:24:35 +02:00
2021-01-13 03:31:00 +01:00
```js
// solution required
```