I have this is grammar :
F = F and F
F = F or F
F = F => F
F = F <=> F
F = not F
F = (F)
D = a
but this grammar has a ambiguity , i'm Stripped a ambiguity like this :
F = F and A
F = A
A = F or B
A = B
B = F => C
B = C
C = F <=> C
C=D
D = not F
D = (F)
D = a
its true or no ?
No, your second grammar is still ambiguous - the production 'F = F and F' can derive 'F and F and F' two ways.