I want to make sure I understand the correct notation and expressions for proving that an axiom system is consistent. I have the axioms
- Every line is a collection of points.
- There are at least two points.
- For any two points there is exactly one line containing them.
- For any line there is a point not on the line.
- For any line and point not on the line, there is a line parallel to the first line which contains the point.
To prove this consistent I want to exhibit a model. I this case, I think I want two points $P,Q$ that lay on one line, and an infinity of other (distinct) points $A_{1}, A_{2}, ...$ each of which lies on lines that are pairwise parallel. Each of these lines will, themselves, be a collection of points. While I could have each line be an infinity of points, a minimal model would have all lines contain just one point except for the first line I mentioned, which has two.
Do I need to say more than this? Is there some notation or form of expression that is more appropriate for the assignment?
$ \newcommand{L}{\mathbb L} \newcommand{P}{\mathbb P} $
$$\forall l \in \L ~~ a \in l \rightarrow a \in \P$$
$$\exists a,b \in \P ~~ a \ne b$$
$$\forall a,b \in \P ~~\exists_1 l \in \L ~~a \in l \land b \in l $$
$$\forall l \in \L~~ \exists p \in \P ~~p \not \in l$$
$$\forall l \in \L , p \in \P ~~ p \not \in \L \rightarrow \exists m \in \L ~~ p \in m \land Z(m,l)$$
These axioms require 2 sets, $\P$ and $\L$. They require 1 function $Z(,)$ (for parallel) which has to be defined over $\L$.
To show consistency in terms of model theory, you show a structure (a collection of objects,sets,functions) for which the axioms are true. This structure doesn't have to have anything to do with geometry as you intuitively think of it.
For example , a structure which satisfies the axioms is:
This seems to defy the axiom that all pairs of points can make a line. You have partitioned the points among lines, but the axioms that any 2 points make a line imply that there must be a "chain" among the line containment predicate : in other words, for any 2 points $p_1, p_2$, there are a collections of points $q$ and line $L$ such that $p_1 L_0 q_0 \land q_0 L_1 q_1 \land q_1 L_2 q_2 \land q_2 L_3 q_3 \dots q_n L_m p_2$. Where $pLq$ means points $p$ and $q$ are on $L$.
Why? What axiom is this satisfying?
I believe a minimal model would be
Since "For any line there is a point not on the line." demands that there is at least 3 points.