File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -250,6 +250,12 @@ Other minor additions
250
250
≤ᵇ-reflects-≤ : Reflects (m ≤ n) (m ≤ᵇ n)
251
251
```
252
252
253
+ * Added new proofs in ` Data.Sign.Properties ` :
254
+ ``` agda
255
+ s*opposite[s]≡- : ∀ s → s * opposite s ≡ -
256
+ opposite[s]*s≡- : ∀ s → opposite s * s ≡ -
257
+ ```
258
+
253
259
* Added new proof in ` Relation.Nullary.Reflects ` :
254
260
``` agda
255
261
fromEquivalence : (T b → P) → (P → T b) → Reflects P b
Original file line number Diff line number Diff line change @@ -129,6 +129,14 @@ s*s≡+ : ∀ s → s * s ≡ +
129
129
s*s≡+ + = refl
130
130
s*s≡+ - = refl
131
131
132
+ s*opposite[s]≡- : ∀ s → s * opposite s ≡ -
133
+ s*opposite[s]≡- + = refl
134
+ s*opposite[s]≡- - = refl
135
+
136
+ opposite[s]*s≡- : ∀ s → opposite s * s ≡ -
137
+ opposite[s]*s≡- + = refl
138
+ opposite[s]*s≡- - = refl
139
+
132
140
------------------------------------------------------------------------
133
141
-- DEPRECATED NAMES
134
142
------------------------------------------------------------------------
You can’t perform that action at this time.
0 commit comments