A quartic constraint bounds the first coordinate by sixteen
ProvedLeanWorkbookFaithful.quartic_constraint_boundinequalitieslean-workbookreal-analysis
Let be strictly positive real numbers satisfying
Then . No separate condition is assumed.
This is the full inequality from the natural-language statement of Lean Workbook record lean_workbook_plus_27229. It supplies a uniform bound under the original constraint and can be applied without any additional product normalization. The existing formal record includes such an extra hypothesis; this declaration intentionally restores the source statement.
Preamble
import Mathlib.Analysis.Complex.Basic
Formal statement
namespace LeanWorkbookFaithful
theorem quartic_constraint_bound (a b c d : ℝ)
(ha : 0 < a) (hb : 0 < b) (hc : 0 < c) (hd : 0 < d)
(h : a + 2 * (b ^ 4 + c ^ 4 + d ^ 4) + 1 / (a * b * c * d) = 135 / 8) :
a ≤ 16 := by sorry
end LeanWorkbookFaithfulSource
Read-back
What the Lean code literally says, in plain math · Codex (exact model identifier unavailable in auditor runtime)
For all real numbers with , , , and , if , then . The positivity assumptions ensure that the denominator is nonzero.
Human review
Thank you for the submission. The statement is cleanly prepared, but a single isolated competition style inequality is too narrow to carry a mission. Missions work best when they target a coherent body of connected material.