Local Fields and Valuations - Applications
Local fields enable explicit solution of Diophantine equations, construction of representations, and understanding of global phenomena locally.
A quadratic form over represents zero nontrivially if and only if represents zero over and all .
Application: To determine if has nontrivial solutions, check:
- Real condition: at most one of has the same sign as the others
- -adic conditions for finitely many (those dividing )
This reduces an infinite problem (checking all rationals) to finitely many local checks.
Does have nontrivial rational solutions?
Check locally:
- : Yes, works approximately
- : Check if is a square times 3 in
- : Check similarly
- for : Automatic by Hensel
If all local conditions satisfy, solution exists rationally. Indeed, is trivial; need proper analysis showing solution exists.
Galois representations arise from:
- Tate modules of abelian varieties
- Γtale cohomology of varieties
- Modular forms (via Eichler-Shimura)
Local behavior at (restriction to ) determines ramification, crystalline/semistable properties, and -function factors.
The Fontaine-Mazur conjecture characterizes geometric representations via their local properties at all primes.
Modern computational algebra systems implement -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 -adically.
Global class field theory reduces to local class field theory via product formula:
This sum of local invariants equals zero for global elements, providing the fundamental class enabling Artin reciprocity.
Local Brauer groups are explicitly computable, making global reciprocity tractable.
Elliptic curves over are used in:
- -adic point counting: Computing via lifting to
- Formal groups: The formal group of over enables fast scalar multiplication
- Isogenies: Rational isogenies extend to -adic isogenies, used in SIDH/CSIDH protocols
Local analysis provides efficient algorithms unavailable globally.