Skip to content

Commit

Permalink
Fix proof
Browse files Browse the repository at this point in the history
  • Loading branch information
fzaiser committed Oct 10, 2023
1 parent 4288684 commit 1ed937b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Math/Analysis/Limits.dfy
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ module Limits {
var s2 := sequence2(n);
calc {
Reals.Dist(productSequence(n), productLimit);
== { assert productSequence(n) == s1 * s2; }
== { assert productSequence(n) == sequence1(n) * sequence2(n) == s1 * s2; }
Reals.Dist(s1 * s2, limit1 * limit2);
< { LimitIsMultiplicativeSuffixHelper(s1, limit1, s2, limit2, bound1, epsilon); }
epsilon;
Expand Down

0 comments on commit 1ed937b

Please sign in to comment.