Zulip Chat Archive

Stream: mathlib4

Topic: Omitting indexing type in a pi type


Yaël Dillies (Nov 10 2022 at 23:53):

What's the Lean 4 syntax to omit the type of the indexing type of a pi type?

Scott Morrison (Nov 11 2022 at 00:03):

Can you show the Lean 3 syntax? I don't understand the question yet.

Eric Wieser (Nov 11 2022 at 00:27):

Π a : α, β a is to Π a, β a as (a : α) → β a is to ...?

Moritz Doll (Nov 11 2022 at 00:37):

(a : _) → β a works, but it is not really nice

Yaël Dillies (Nov 11 2022 at 00:42):

Oh, is it just \forall a, \beta a by any chance?

Moritz Doll (Nov 11 2022 at 00:45):

that seems to work as well


Last updated: Dec 20 2023 at 11:08 UTC