Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
| Download
Try doing some basic maths questions in the Lean Theorem Prover. Functions, real numbers, equivalence relations and groups. Click on README.md and then on "Open in CoCalc with one click".
Project: Xena
Views: 18536License: APACHE
/- Copyright (c) 2020 Anne Baanen. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Anne Baanen A set of test cases for the `simp_rw` tactic. -/ import tactic.simp_rw import data.set.basic -- `simp_rw` can perform rewrites under binders: example : (λ (x y : ℕ), x + y) = (λ x y, y + x) := by simp_rw [add_comm] -- `simp_rw` performs rewrites in the given order (`simp` fails on this example): example {α β : Type} {f : α → β} {t : set β} : (∀ s, f '' s ⊆ t) = ∀ s : set α, ∀ x ∈ s, x ∈ f ⁻¹' t := by simp_rw [set.image_subset_iff, set.subset_def] -- `simp_rw` applies rewrite rules multiple times: example (a b c d : ℕ) : a + (b + (c + d)) = ((d + c) + b) + a := by simp_rw [add_comm] -- `simp_rw` can also rewrite in assumptions: example (p : ℕ → Prop) (a b : ℕ) (h : p (a + b)) : p (b + a) := by {simp_rw [add_comm a b] at h, exact h} -- or explicitly rewrite at the goal: example (p : ℕ → Prop) (a b : ℕ) (h : p (a + b)) : p (b + a) := by {simp_rw [add_comm b a] at ⊢, exact h} -- or at multiple assumptions: example (p : ℕ → Prop) (a b : ℕ) (h₁ : p (b + a) → p (a + b)) (h₂ : p (a + b)) : p (b + a) := by {simp_rw [add_comm a b] at h₁ h₂, exact h₁ h₂} -- or everywhere: example (p : ℕ → Prop) (a b : ℕ) (h₁ : p (b + a) → p (a + b)) (h₂ : p (a + b)) : p (a + b) := by {simp_rw [add_comm a b] at *, exact h₁ h₂}