TheoremComplete

Local Fields and Valuations - Applications

Local fields enable explicit solution of Diophantine equations, construction of representations, and understanding of global phenomena locally.

TheoremHasse-Minkowski Theorem (Local-Global for Quadratic Forms)

A quadratic form QQ over Q\mathbb{Q} represents zero nontrivially if and only if QQ represents zero over R\mathbb{R} and all Qp\mathbb{Q}_p.

Application: To determine if ax2+by2+cz2=0ax^2 + by^2 + cz^2 = 0 has nontrivial solutions, check:

  • Real condition: at most one of a,b,ca, b, c has the same sign as the others
  • pp-adic conditions for finitely many pp (those dividing 2abc2abc)

This reduces an infinite problem (checking all rationals) to finitely many local checks.

ExampleSolving Conics

Does x2+y2=3z2x^2 + y^2 = 3z^2 have nontrivial rational solutions?

Check locally:

  • R\mathbb{R}: Yes, (1,1,2/3)(1, 1, \sqrt{2/3}) works approximately
  • Q2\mathbb{Q}_2: Check if βˆ’1-1 is a square times 3 in Q2βˆ—\mathbb{Q}_2^*
  • Q3\mathbb{Q}_3: Check similarly
  • Qp\mathbb{Q}_p for p>3p > 3: Automatic by Hensel

If all local conditions satisfy, solution exists rationally. Indeed, (1,1,0)(1, 1, 0) is trivial; need proper analysis showing solution (2,1,1)(2, 1, 1) exists.

Theorem$p$-adic Representations

Galois representations ρ:Gal(QΛ‰/Q)β†’GLn(Qp)\rho: \text{Gal}(\bar{\mathbb{Q}}/\mathbb{Q}) \to GL_n(\mathbb{Q}_p) arise from:

  • Tate modules of abelian varieties
  • Γ‰tale cohomology of varieties
  • Modular forms (via Eichler-Shimura)

Local behavior at pp (restriction to Gal(Qˉp/Qp)\text{Gal}(\bar{\mathbb{Q}}_p/\mathbb{Q}_p)) determines ramification, crystalline/semistable properties, and LL-function factors.

The Fontaine-Mazur conjecture characterizes geometric representations via their local properties at all primes.

ExampleComputing with $p$-adic Numbers

Modern computational algebra systems implement pp-adic arithmetic:

\\ Pari/GP: Solve x^2 = 2 in Q_7
localprec(20);
sqrt(2, 7)
\\ Output: 3 + 7 + 2*7^2 + 6*7^3 + 7^4 + ...

\\ Factor polynomial over Q_5
factorpadic(x^3 - 2, 5, 10)

These computations use Hensel lifting and Newton's method pp-adically.

TheoremLocal Fields and Class Field Theory

Global class field theory reduces to local class field theory via product formula: ∏vinvv:∏vH2(Kv,KΛ‰vβˆ—)β†’Q/Z\prod_v \text{inv}_v: \prod_v H^2(K_v, \bar{K}_v^*) \to \mathbb{Q}/\mathbb{Z}

This sum of local invariants equals zero for global elements, providing the fundamental class enabling Artin reciprocity.

Local Brauer groups Br(Kv)β‰…Q/Z\text{Br}(K_v) \cong \mathbb{Q}/\mathbb{Z} are explicitly computable, making global reciprocity tractable.

ExampleCryptography and $p$-adics

Elliptic curves over Qp\mathbb{Q}_p are used in:

  • pp-adic point counting: Computing E(Fpn)E(\mathbb{F}_{p^n}) via lifting to Qp\mathbb{Q}_p
  • Formal groups: The formal group of EE over Zp\mathbb{Z}_p enables fast scalar multiplication
  • Isogenies: Rational isogenies extend to pp-adic isogenies, used in SIDH/CSIDH protocols

Local analysis provides efficient algorithms unavailable globally.