I need to prove that the height of a formula's tree is always less than the number of nodes of the same tree, but I got stuck after the assumption and don't know how to proceed. Can somebody help me fill the "admit." spaces?
Require Import String.
Require Import Init.Nat.
Require Import PeanoNat.
Require Import Plus.
Require Import Le.
Theorem le_plus_trans2 : forall n m p, (n <= m) -> (n <= p + m).
Proof.
intros n m p.
intros x.
apply le_trans with (m:= m).
assumption.
admit.
Qed.