In Idris/Haskell, one can prove properties of data by annotating the types and using GADT constructors, such as with Vect, however, this requires hardcoding the property into the type (e.g. a Vect has to be a separate type from a List). Is it possible to have types with an open set of properties (such as list carrying both a length and running average), for example by overloading constructors or using something in the vein of Effect?
Open Type Level Proofs in Haskell/Idris
721 Views Asked by David Harrison At
1
There are 1 best solutions below
Related Questions in HASKELL
- Typeclass projections as inheritance
- How to generate all possible matrices given a number n in Haskell
- Is there a way to get `cabal` to detect changes to non-Haskell source files?
- How to have fixed options using Option.Applicative in haskell?
- How can I create a thread in Haskell that will restart if it gets killed due to any reason?
- Automatic Jacobian matrix in Haskell
- Haskell writing to named pipe unexpectedly fails with `openFile: does not exist (No such device or address)`
- Why does Enum require to implement toEnum and fromEnum, if that's not enough for types larger than Int?
- Non-exhaustive patterns in function compress
- How to get terms names of GADT in Template Haskell?
- Implementing eval() function with Happy parser generator
- How to count the occurences of every element in a list in Haskell fast?
- In Haskell, what does `Con Int` mean?
- Extract a Maybe from a heterogeneous collection
- Haskell, Stack, importing module shows error "Module not found"
Related Questions in PROOF
- How to extract a variable from an exist clause
- Cryptography Notion - Diffie-Hellmann
- Proof by reductio ad absurdum in Isabelle
- I have a problem in Isabelle related to 'Clash of types' that I am unable to solve. Could someone help me?
- Does sequencing an infinite list of IO actions by definition result in a never-ending action? Or is there a way to bail out?
- How to improve a LH=RH chain proof
- How to prove that nat_to_bin combines bin_to_nat b = normalize b in Coq
- Is this the best loop variant for the following code which takes in a sorted array of integers and determines if theres are ints x,y that equal k
- Sledgehammer output with vampire
- Agda Recursion on Proof
- What is the simplest AVL tree structure to demonstrate a complete right rotation?
- Agda Unresolved Metas
- lean4 prove that the set of prime numbers has at least two distinct elements
- Josephus Problem - Is there a position with 0 chance of surviving, regardless of any skip interval?
- Does this DFA satisfy the complement of the given language?
Related Questions in CATEGORY-THEORY
- How can I implement a Functor trait in Rust?
- Implementing the idea of category in C++ at compile time
- What is the name used in literature and libraries for the abstraction of "zero profunctors"
- Profunctor but with three contravariant parameters
- Bifunctors in Haskell vs in category theory
- What Category theory object makes Array in JavaScript chainable?
- initial and terminal object make the category unique?
- cats effect evaluates only the final for coprehension and ignores rest
- Monad and Functor law for Monad and Functor type class in Haskell
- Deriving a monad from a cofree comonad
- Is the type constructor `Maybe (BTree a)` a monad?
- How do I prove two applications of the absurd pattern result in the same in Cubical Agda?
- Is there a semigroup/monoid in the context of a monad?
- Can one simplify the Codensity monad on Maybe?
- In Scala cats-laws, why is the functor composition law different from canonical definition?
Related Questions in CORRECTNESS
- Proof of dynamic programming solution for Leetcode 818: Racecar
- Is it safe to swap two integers by `a, b = b, a` in golang?
- BFS to find unreachable pair of vertices (s, t) from given sets S and T in V of digraph G=(V, E)
- Correctness of multiplication with overflow detection
- Struggling to find loop invariant in power function
- Optimal placement of assert statements to assure correctness using invariant
- even though my output is same as testcase output hackerrank shows error
- C++ operators overload, rules for spaces in expression
- How to build a proof of correctness in coq for elements_tr
- Why does the switch statement not return information to the app?
- Can someone come up with a kivy python code where we define keys and values
- Is there any 'correct' way of negotiate http quality values / q-factors?
- How do i return more than one result from this if the input have similar value
- What is the best "practice" or form of code in javascript (example)
- Validity of Hoare triple with unknown variable in program and post-condition?
Related Questions in IDRIS
- How to get normal values from fastPack in Idris?
- Erased arguments in type constructors
- What does it mean to import a directory in Idris2?
- Type-safe linear maybeToList
- Type-safely Implementing an Arbitrary Degree Blackbird Combinator (B-n Combinator)
- Understanding of dependant types machines in Idris
- Can any dynamic language can write the some prog like the book<Type-Driven Development with idris>'s Chapter6's datastore?
- Cannot match two identical types
- Idris prove termination of proof without assert_smaller
- Idris: rewrite does not work (rewriting by ... did not change)
- What is the equivalent of mapM and mapM_ in idris2?
- How to generate a Decidable inequality proof in Idris2?
- How to write a pure function in idris2 FFI?
- Updating a dependently typed field without updating what it depends on
- Does idris support a way to collapse symmetrical statements into one?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I believe that McBride has answered that question (for Type Theory) in his ornament paper (pdf). The concept you are looking for is the one of an algebraic ornament (emphasis mine):
Now, let's write some code. I've put the whole thing in a gist because I'm going to interleave comments in here. Also, I'm using Agda but it should be easy to tranlate to Idris.
We start by defining what it means to be an algebra delivering
Bs acting on a list ofAs. We need a base case (a value of typeB) as well as way to combine the head of the list with the induction hypothesis.Given this definition, we can define a type of lists of
As indexed byBs whose value is precisely the result of the computation corresponding to a givenListAlg A B. In thenilcase, the result is the base case provided to us by the algebra (proj₁ alg) whilst in theconscase, we simply combine the induction hypothesis with the new head using the second projection:Ok, let's import some libraries and see a couple of examples now:
The algebra computing the length of a list is given by
0as the base case andconst sucas the way to combine anAand the length of the tail to build the length of the current list. Hence:If the elements are natural numbers then they can be summed. The algebra corresponding to that has
0as the base case and_+_as the way to combine anℕtogether with the sum of the elements contained in the tail. Hence:Crazy thought: If we have two algebras working on the same elements, we can combine them! This way we'll track 2 invariants rather than one!
An now the examples:
If we are tracking the length, then we can define Vectors:
And have, e.g., this vector of length 4:
If we are tracking the sum of the elements, then we can define a notion of distribution: a statistical distribution is a list of probabilities whose sum is 100:
And we can define a uniform one for instance:
Finally, by combining the length and sum algebras, we can implement the notion of sized distribution.
And give this nice uniform distribution for a 4 elements set: