Zulip Chat Archive
Stream: new members
Topic: Decision procedure for equations over fields
Benjamin (Jan 16 2025 at 16:18):
Is there a tactic to automatically prove goals like the following?
example (n k : ℚ) (hn : n ≠ 0) (hk : k ≠ 0) : n / (n * k) - 1 / k = 0
Michael Stoll (Jan 16 2025 at 16:20):
field_simp
?
Benjamin (Jan 16 2025 at 17:05):
Thanks!
Michael Rothgang (Jan 16 2025 at 18:04):
Perhaps you also want to call ring
afterwards.
Ruben Van de Velde (Jan 16 2025 at 18:56):
In this case simp
cleans up everything, but yeah, in general ring
is a good next step
Last updated: May 02 2025 at 03:31 UTC