I am new to Coq, I have f1 & f2 two functions whose input and output arguments are natural number.I want to ask that what ever be the output value of f1 and f2. Result should not be zero due to addition of non zero number.Therefore it should be solve by eauto or lia.
Theorem not_0:forall (n a b:nat),
n=?0= false ->
0=? (f1(a) + n) = false->
0=? (f2 (f1(a)+n)) = false.