Python Implementation of Problem 836

View source code here on GitHub!

Problem Solution

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.

python.src.p0836.main() str
 1"""
 2Project Euler Problem 836
 3
 4Alright, this was funny
 5
 6Problem:
 7
 8Let A be an **affine plane** over a **radically integral local field** F with residual characteristic p.
 9
10We consider an **open oriented line section** U of A with normalized Haar measure m.
11
12Define f(m,p) as the maximal possible discriminant of the **jacobian** associated to the
13**orthogonal kernel embedding** of U into A.
14
15Find f(20230401, 57). Give as your answer the concatenation of the first letters of each bolded word.
16"""
17
18
19def main() -> str:
20    return "aprilfoolsjoke"

Tags: word-problem