All proofs
Project-declaredLean 4.33.0-rc1 · mathlib@6c5a9081e9b7

Mul Valuation lt iff norm lt

Padic.mulValuation_lt_iff_norm_lt

Plain-language statement

Strict comparison of Padic.mulValuation matches strict comparison of the norm.

Exact Lean statement

lemma mulValuation_lt_iff_norm_lt {z a : ℚ_[p]} :
    mulValuation z < mulValuation a ↔ ‖z‖ < ‖a‖

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma mulValuation_lt_iff_norm_lt {z a : _[p]} :    mulValuation z < mulValuation a  ‖z‖ < ‖a‖ := by  rcases eq_or_ne a 0 with rfl | ha  · simp only [map_zero, norm_zero]    exact iff_of_false (not_lt.mpr zero_le) (not_lt.mpr (norm_nonneg _))  rcases eq_or_ne z 0 with rfl | hz  · simp [pos_iff_ne_zero, norm_pos_iff, ha]  · have hp1 : (1 : ) < p := by exact_mod_cast (Fact.out : p.Prime).one_lt    rw [norm_eq_zpow_log_mulValuation hz, norm_eq_zpow_log_mulValuation ha,      zpow_lt_zpow_iff_right₀ hp1,      WithZero.log_lt_log ((mulValuation (p := p)).zero_iff.not.mpr hz)        ((mulValuation (p := p)).zero_iff.not.mpr ha)]
Project
Class Field Theory
License
Apache-2.0
Commit
f18cd7fd1575
Source
ClassFieldTheory/IsNonarchimedeanLocalField/Qp.lean:32-43

Reuse this declaration

Bring the exact result into your workflow

The import identifies the source module. Your project still needs the pinned package dependency shown on this page.

What this badge means

This completion status comes from the project or community source. It has not yet been represented here as an independent rebuild and axiom audit.

Continue in this project

Related declarations

Project-declaredLean 4.33.0-rc1

Exists of surjective

groupCohomology.exists_of_surjective

Plain-language statement

Given map f: M ⟶ N and q : ℕ, if H^{q+1}(M) ⟶ H^{q+1}(N) is surjective, then any z : Z^{q+1}(N) can be written as f(z') + d(y) for some z' : Z^{q+1}(M) and y : C^q(M). Note that d is spelled as toCocycles.

number theoryclass field theorylocal fields

Source project: Class Field Theory

Person-level attribution pending.

View proof record