Skip to Content.
Sympa Menu

coq-club - Re: [Coq-Club] Tactics to manipulate real arithmetic (w/o solving)

coq-club AT inria.fr

Subject: The Coq mailing list

List archive

Re: [Coq-Club] Tactics to manipulate real arithmetic (w/o solving)


Chronological Thread 
  • From: Guillaume Melquiond <guillaume.melquiond AT inria.fr>
  • To: coq-club AT inria.fr
  • Subject: Re: [Coq-Club] Tactics to manipulate real arithmetic (w/o solving)
  • Date: Tue, 14 Mar 2017 11:32:51 +0100

On 14/03/2017 00:28, Valentin Robert wrote:
> Hello,
>
> Are there any existing techniques to either:
>
> 1) allow rewriting with equations/inequations where the term to be
> rewritten is not immediately found, but can be isolated:
>
> Require Import Reals.
> Example e1 (a b c d e : R) (H : c * a = d) : a * b * c = e.
> (* super_rewrite with H, to obtain something like (d * b = e) or (b * d
> = e) *)

If you don't need anything more clever than that, then "ring_simplify
[H]" does the job.

Best regards,

Guillaume



Archive powered by MHonArc 2.6.18.

Top of Page