Hi there ! I didn't find the following lemma
Lemma eq_Re_Im (T : numClosedFieldType) (x y : T) :
(x == y) = ('Re x == 'Re y) && ('Im x == 'Im y).
Proof.
apply/eqP/andP => [->//|[/eqP eqRe /eqP eqIm]].
by rewrite (Crect x) eqRe eqIm -Crect.
Qed.
Did I miss something ? Should I throw yet another PR ? Any suggestion of better name ?
Hi, I recently noticed it's absence and I was actually making a PR for it along with other missing lemmas.
Excellent ! I might have some more lemmas to suggest...
Florent Hivert said:
Excellent ! I might have some more lemmas to suggest...
please do
didn’t @Marie Kerjean produce many such lemmas for holomorphy?
Reynald Affeldt said:
didn’t Marie Kerjean produce many such lemmas for holomorphy?
Yes, here among other lemmas, but with equality in Prop
and other mc-analysis things.
Marie Kerjean said:
Reynald Affeldt said:
didn’t Marie Kerjean produce many such lemmas for holomorphy?
Yes, here among other lemmas, but with equality in
Prop
and other mc-analysis things.
Also it is not for a numClosedFieldType
but for R[i]
.
Last updated: Feb 08 2023 at 07:02 UTC