C# Implementation of Problem 836
View source code here on GitHub!
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*/
17using System;
18
19namespace Euler
20{
21 public class p0836 : IEuler
22 {
23 public object Answer()
24 {
25 return "aprilfoolsjoke";
26 }
27 }
28}