JavaScript Implementation of Problem 836
View source code here on GitHub!
- p0836()
Project Euler Problem 836
Alright, this was funny
Problem:
Let A be an affine plane over a radically integral local field F with residual characteristic p.
We consider an open oriented line section U of A with normalized Haar measure m.
Define f(m,p) as the maximal possible discriminant of the jacobian associated to the orthogonal kernel embedding of U into A.
Find f(20230401, 57). Give as your answer the concatenation of the first letters of each bolded word.
- Returns:
string --
1/**
2 *
3 * Project Euler Problem 836
4 *
5 * Alright, this was funny
6 *
7 * Problem:
8 *
9 * Let A be an **affine plane** over a **radically integral local field** F with residual characteristic p.
10 *
11 * We consider an **open oriented line section** U of A with normalized Haar measure m.
12 *
13 * Define f(m,p) as the maximal possible discriminant of the **jacobian** associated to the
14 * **orthogonal kernel embedding** of U into A.
15 *
16 * Find f(20230401, 57). Give as your answer the concatenation of the first letters of each bolded word.
17 *
18 * @return {string}
19 */
20exports.p0836 = function() {
21 return 'aprilfoolsjoke';
22};