Skip to content
Snippets Groups Projects
Commit 71e54c62 authored by François Clément's avatar François Clément
Browse files

Try this one?

parent d25a85b7
No related branches found
No related tags found
No related merge requests found
......@@ -140,6 +140,11 @@ Variable f : U1 -> U2. (* Function. *)
Variable A1 : U1 -> Prop. (* Subset. *)
Variable A2 : U2 -> Prop. (* Subset. *)
(* TODO: try with the following inductive type.
Inductive image_alt : U2 -> Prop :=
| Im : forall x1, A1 x1 -> image_alt (f x1).
*)
Definition image : U2 -> Prop :=
fun x2 => exists x1, A1 x1 /\ x2 = f x1.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment