-
Notifications
You must be signed in to change notification settings - Fork 206
feat(ErdosProblems): 602 #1357
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
feat(ErdosProblems): 602 #1357
Conversation
| (∃ (c : α → Fin 2), | ||
| ∀ i, #(c '' {x : α | x ∈ A i}) ≠ 1) ↔ answer(sorry) := by |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What about
| (∃ (c : α → Fin 2), | |
| ∀ i, #(c '' {x : α | x ∈ A i}) ≠ 1) ↔ answer(sorry) := by | |
| (∃ c : α → Fin 2, ∀ i, (c '' A i).Nontrivial) ↔ answer(sorry) := by |
| /-- | ||
| **Erdős Problem 602:** | ||
| Let $(A_i)$ be a family of sets with $|A_i| = \aleph_0$ for all $i$, such that for any $i \neq j$ we have | ||
| $|A_i \cap A_j|$ finite and $\neq 1$. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You seem to be missing the \ne 1 condition in the lean
| variable (ι : Type u) (α : Type v) (A : ι → Set α) (h : ∀ i, #(A i) = ℵ₀) | ||
| variable (hij : Pairwise fun i j ↦ (A i ∩ A j).Finite) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you include all these variables in the ↔ answer(sorry)? To spare you some trouble, let's make the statement universe monomorphic
| variable (ι : Type u) (α : Type v) (A : ι → Set α) (h : ∀ i, #(A i) = ℵ₀) | |
| variable (hij : Pairwise fun i j ↦ (A i ∩ A j).Finite) | |
| variable (ι α : Type) (A : ι → Set α) (h : ∀ i, #(A i) = ℵ₀) | |
| variable (hij : Pairwise fun i j ↦ (A i ∩ A j).Finite) |
fixes #821