Java Implementation of Problem 836

View source code here on GitHub!

public class p0836 implements IEuler
Object answer()
Returns:

The answer to Project Euler problem 836

 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*/
17package euler;
18
19public class p0836 implements IEuler {
20    @Override
21    public Object answer() {
22        return "aprilfoolsjoke";
23    }
24}

Tags: word-problem