Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Reasoning with Types

Reasoning with Types

Scala exhibits quite an expressive type system, and we should leverage this type system to it's full extent. In doing so, we gain the ability to statically and provably reason about our programs. In this talk we will explore various methods on how we can use types to our advantage, as well as some hoops we must jump through to not lose this advantage in the Scala language. We will also see examples of these methods in practice by delving into some Typelevel (http://typelevel.org/) projects.

Adelbert Chang

August 08, 2014
Tweet

More Decks by Adelbert Chang

Other Decks in Programming

Transcript

  1. Assumptions We will be subscribing to the thesis of functional

    programming Functions will be total - no throwing exceptions!
  2. Assumptions We will be subscribing to the thesis of functional

    programming Functions will be total - no throwing exceptions! Every input will relate to exactly one output
  3. Assumptions We will be subscribing to the thesis of functional

    programming Functions will be total - no throwing exceptions! Every input will relate to exactly one output We will require expressions to be referentially transparent - we can replace expressions with their value without altering the behavior of the program
  4. Parametricity Parametric polymorphism In 1989 Philip Wadler wrote a popular

    paper called “Theorems for free!” Types are documentation
  5. Parametricity Parametric polymorphism In 1989 Philip Wadler wrote a popular

    paper called “Theorems for free!” Types are documentation Docstrings erode, types are forever and compiler checked!
  6. Pop quiz: How many valid implementations are there for this?

    def reverse(xs: List[Int]): List[Int]
  7. What about reducing down a collection? def sum(xs: List[Int]): Int

    = xs.foldLeft(0)(_ + _) Some problems: We can still cheat with our knowledge of Int!
  8. What about reducing down a collection? def sum(xs: List[Int]): Int

    = xs.foldLeft(0)(_ + _) Some problems: We can still cheat with our knowledge of Int! Not generic - what if we wanted Double? Long? BigInt?
  9. def sum[A](xs: List[A])(implicit A: Numeric[A]): A = xs.foldLeft(A.zero)(A.plus) Some problems:

    Still can manifest terms of A with Numeric#fromInt! Still not quite generic - what if we reduce List[String] ? List[Set[A]] ?
  10. def sum[A](xs: List[A])(implicit A: Numeric[A]): A = xs.foldLeft(A.zero)(A.plus) Some problems:

    Still can manifest terms of A with Numeric#fromInt! Still not quite generic - what if we reduce List[String] ? List[Set[A]] ? What do we actually need:
  11. def sum[A](xs: List[A])(implicit A: Numeric[A]): A = xs.foldLeft(A.zero)(A.plus) Some problems:

    Still can manifest terms of A with Numeric#fromInt! Still not quite generic - what if we reduce List[String] ? List[Set[A]] ? What do we actually need: A “zero” value of type A for the empty list case
  12. def sum[A](xs: List[A])(implicit A: Numeric[A]): A = xs.foldLeft(A.zero)(A.plus) Some problems:

    Still can manifest terms of A with Numeric#fromInt! Still not quite generic - what if we reduce List[String] ? List[Set[A]] ? What do we actually need: A “zero” value of type A for the empty list case A binary operation (A, A) => A to accumulate
  13. /** In Scalaz and Spire */ trait Monoid[A] { def

    append(x: A, y: A): A def zero: A } /** Example of a Monoid[Int] */ new Monoid[Int] { def append(x: Int, y: Int): Int = x + y def zero: Int = 0 }
  14. We can go further (up the ivory tower).. This argument

    applies to functors, applicatives, monads, etc. def foo[A, B, C](as: List[A]) (f: A => B)(g: B => C): List[C] = ???
  15. This argument applies to functors, applicatives, monads, etc. def foo[A,

    B, C](as: List[A]) (f: A => B)(g: B => C): List[C] = List.empty[C] as.map(f andThen g) as.reverse.map(f andThen g) etc.
  16. This argument applies to functors, applicatives, monads, etc. trait Functor[F[_]]

    { def map[A, B](fa: F[A])(f: A => B): F[B] } def foo[F[_] : Functor, A, B, C] (fa: F[A])(f: A => B)(g: B => C): F[C]
  17. def absurd[A, B](a: A): B = a.asInstanceOf[B] throw new Exception("oops")

    Many more: null isInstanceOf and asInstanceOf side effects
  18. def absurd[A, B](a: A): B = a.asInstanceOf[B] throw new Exception("oops")

    Many more: null isInstanceOf and asInstanceOf side effects java.lang.Object methods
  19. def absurd[A, B](a: A): B = absurd(a) This is the

    halting problem, undecideable in the presence of Turing completeness
  20. def absurd[A, B](a: A): B = absurd(a) This is the

    halting problem, undecideable in the presence of Turing completeness Many (theorem proving) languages give up Turing completeness in favor of totality checking
  21. A fancier example The idea of a “monoid” comes from

    the wonderful field of abstract algebra
  22. A fancier example The idea of a “monoid” comes from

    the wonderful field of abstract algebra Many more cool things:
  23. A fancier example The idea of a “monoid” comes from

    the wonderful field of abstract algebra Many more cool things: semigroup, group, semiring, ring, field, etc.
  24. Welcome to Spire trait Semigroup[A] trait Monoid[A] extends Semigroup[A] trait

    Group[A] extends Monoid[A] trait Semiring[A] extends ... trait Rig[A] extends Semiring[A] trait Rng[A] extends Semiring[A] trait Ring[A] extends Rig[A] with Rng[A] trait Field[A] extends Ring[A]
  25. In data mining and machine learning, dealing with vectors is

    fairly common What sort of things do we do with vectors?
  26. In data mining and machine learning, dealing with vectors is

    fairly common What sort of things do we do with vectors? addition, subtraction, scalar multiplication (module)
  27. In data mining and machine learning, dealing with vectors is

    fairly common What sort of things do we do with vectors? addition, subtraction, scalar multiplication (module) scalar division (vector space)
  28. In data mining and machine learning, dealing with vectors is

    fairly common What sort of things do we do with vectors? addition, subtraction, scalar multiplication (module) scalar division (vector space) normalization (normed vector space)
  29. In data mining and machine learning, dealing with vectors is

    fairly common What sort of things do we do with vectors? addition, subtraction, scalar multiplication (module) scalar division (vector space) normalization (normed vector space) dot product (inner product space)
  30. The naive way of doing things case class Module(repr: Vector[Double])

    { def +(other: Module): Module def -(other: Module): Module def *:(s: Double): Module }
  31. Why specialize to Double? In fact, why specialize to Vector[_]?

    We only care we can add, subtract, and multiply the “inner” type!
  32. Why specialize to Double? In fact, why specialize to Vector[_]?

    We only care we can add, subtract, and multiply the “inner” type! Put another way, we care it forms a Rng! trait Rng[A] { def negate(x: A): A def plus(x: A, y: A): A def times(x: A, y: A): A def zero: A } trait Module[V, R] { implicit abstract def scalar: Rng[R] }
  33. What if we want scalar division? Rngs support negation, addition,

    and multiplication, but not division Divison is more power - rationals are closed over division, integers are not!
  34. What if we want scalar division? Rngs support negation, addition,

    and multiplication, but not division Divison is more power - rationals are closed over division, integers are not! Abstract algebra and Spire give us Field trait Field[A] extends Rng[A] { ... } trait VectorSpace[V, R] extends Module[V, R] { implicit abstract def scalar: Field[R] }
  35. Logic and Types There is a profound relationship between proofs

    and computation Curry-Howard correspondence/isomorphism
  36. Logic and Types There is a profound relationship between proofs

    and computation Curry-Howard correspondence/isomorphism More expressive types = more expressive proofs
  37. Logic and Types There is a profound relationship between proofs

    and computation Curry-Howard correspondence/isomorphism More expressive types = more expressive proofs How the correspondence works: Logic Computation proposition P type P P is provable P is inhabited proof of P term of type P P and Q product type (P, Q) P or Q sum type P | Q if P then Q P → Q
  38. Example: Get the head of a list v.1 def head[A](as:

    List[A]): A = as match { case Nil => throw new Exception("oops") case a :: _ => a }
  39. Example: Get the head of a list v.1 def head[A](as:

    List[A]): A = as match { case Nil => throw new Exception("oops") case a :: _ => a } Problem: head is partial!
  40. Example: Get the head of a list v.2 def head[A](as:

    List[A]): A = as match { case Nil => null case a :: _ => a }
  41. Example: Get the head of a list v.2 def head[A](as:

    List[A]): A = as match { case Nil => null case a :: _ => a } Problem: null is evil..
  42. The evil that is null Tony Hoare calls null his

    “billion dollar mistake” null inhabits every type
  43. The evil that is null Tony Hoare calls null his

    “billion dollar mistake” null inhabits every type What this means for Curry-Howard:
  44. The evil that is null Tony Hoare calls null his

    “billion dollar mistake” null inhabits every type What this means for Curry-Howard: Any proposition can be proved, trivially
  45. The evil that is null Tony Hoare calls null his

    “billion dollar mistake” null inhabits every type What this means for Curry-Howard: Any proposition can be proved, trivially What this means computationally:
  46. The evil that is null Tony Hoare calls null his

    “billion dollar mistake” null inhabits every type What this means for Curry-Howard: Any proposition can be proved, trivially What this means computationally: Developers are left to their own devices on handling null = very brittle code
  47. Example: Get the head of a list v.3 What are

    we trying to do? Given a List[A], I may or may not be able to prove A
  48. Example: Get the head of a list v.3 What are

    we trying to do? Given a List[A], I may or may not be able to prove A How do we deal with failure if not with exceptions and nulls? sealed abstract class Option[A] final case class None[A]() extends Option[A] final case class Some[A](a: A) extends Option[A]
  49. Example: Get the head of a list v.3 What are

    we trying to do? Given a List[A], I may or may not be able to prove A How do we deal with failure if not with exceptions and nulls? sealed abstract class Option[A] final case class None[A]() extends Option[A] final case class Some[A](a: A) extends Option[A] The number of inhabitants of Option[A] is precisely the number of inhabitants of A + 1
  50. Example: Get the head of a list v.3 What are

    we trying to do? Given a List[A], I may or may not be able to prove A How do we deal with failure if not with exceptions and nulls? sealed abstract class Option[A] final case class None[A]() extends Option[A] final case class Some[A](a: A) extends Option[A] The number of inhabitants of Option[A] is precisely the number of inhabitants of A + 1 This “+ 1” represents our “I couldn’t prove it”
  51. Example: Get the head of a list v.3 def head[A](xs:

    List[A]): Option[A] = as match { case Nil => None case a :: _ => Some(a) }
  52. Example: Get the head of a list v.4 “But I

    know my list will never be empty!”
  53. Example: Get the head of a list v.4 “But I

    know my list will never be empty!” Really? Curry-Howard says prove it! case class NonEmptyList[A](head: A, tail: List[A]) def head[A](as: NonEmptyList[A]): A = as.head
  54. A use case for NonEmptyList /** Both NonEmptyList and Validation

    are in Scalaz */ case class NonEmptyList[A](head: A, tail: List[A]) type ValidationNel[E, A] = Validation[NonEmptyList[E], A] def groupBy[A, B](as: List[A]) (f: A => B): Map[B, NonEmptyList[A]]
  55. Curry-Howard and type classes def sum[A](as: List[A])(implicit A: Monoid[A]): A

    Given a List[A] where A forms a monoid, I can give you (prove) A
  56. Curry-Howard and type classes def sum[A](as: List[A])(implicit A: Monoid[A]): A

    Given a List[A] where A forms a monoid, I can give you (prove) A How do you prove some type A forms a monoid?
  57. Curry-Howard and type classes def sum[A](as: List[A])(implicit A: Monoid[A]): A

    Given a List[A] where A forms a monoid, I can give you (prove) A How do you prove some type A forms a monoid? Propositions are types! trait Monoid[A] { def append(x: A, y: A): A def zero: A }
  58. Curry-Howard and type classes def sum[A](as: List[A])(implicit A: Monoid[A]): A

    Given a List[A] where A forms a monoid, I can give you (prove) A How do you prove some type A forms a monoid? Propositions are types! trait Monoid[A] { def append(x: A, y: A): A def zero: A } Prove A is a monoid by creating a term of type Monoid[A]
  59. Curry-Howard and type classes /** Proposition of a monoid */

    trait Monoid[A] { def append(x: A, y: A): A def zero: A } /** Proof Int forms a monoid */ new Monoid[Int] { def append(x: Int, y: Int): Int = x + y def zero: Int = 0 }
  60. import scalaz.Monoid def sum[A](as: List[A])(implicit A: Monoid[A]): A sum(List(1, 2,

    3)) error: could not find implicit value for evidence parameter sum(List(1,2,3)) ^ Read: Could not find proof Int forms a Monoid (no Monoid[Int] in scope!)
  61. import scalaz.Monoid import scalaz.std.int._ // import proof for Int def

    sum[A](as: List[A])(implicit A: Monoid[A]): A sum(List(1, 2, 3))
  62. Following the law new Monoid[Int] { def append(x: Int, y:

    Int): Int = x + y def zero: Int = 0 } Many type classes in libraries such as Scalaz and Spire are inspired by mathematics
  63. Following the law new Monoid[Int] { def append(x: Int, y:

    Int): Int = x + y def zero: Int = 0 } Many type classes in libraries such as Scalaz and Spire are inspired by mathematics Mathematics is very much governed by laws
  64. Following the law new Monoid[Int] { def append(x: Int, y:

    Int): Int = x + y def zero: Int = 0 } Many type classes in libraries such as Scalaz and Spire are inspired by mathematics Mathematics is very much governed by laws Said type classes should have instances which abide by these laws
  65. Following the law new Monoid[Int] { def append(x: Int, y:

    Int): Int = x + y def zero: Int = 0 } Many type classes in libraries such as Scalaz and Spire are inspired by mathematics Mathematics is very much governed by laws Said type classes should have instances which abide by these laws Example: monoids have:
  66. Following the law new Monoid[Int] { def append(x: Int, y:

    Int): Int = x + y def zero: Int = 0 } Many type classes in libraries such as Scalaz and Spire are inspired by mathematics Mathematics is very much governed by laws Said type classes should have instances which abide by these laws Example: monoids have: An associative binary operation
  67. Following the law new Monoid[Int] { def append(x: Int, y:

    Int): Int = x + y def zero: Int = 0 } Many type classes in libraries such as Scalaz and Spire are inspired by mathematics Mathematics is very much governed by laws Said type classes should have instances which abide by these laws Example: monoids have: An associative binary operation A zero that is an identity in relation to the binary operation
  68. Following the law new Monoid[Int] { def append(x: Int, y:

    Int): Int = x + y def zero: Int = 0 } Many type classes in libraries such as Scalaz and Spire are inspired by mathematics Mathematics is very much governed by laws Said type classes should have instances which abide by these laws Example: monoids have: An associative binary operation A zero that is an identity in relation to the binary operation This is useful because:
  69. Following the law new Monoid[Int] { def append(x: Int, y:

    Int): Int = x + y def zero: Int = 0 } Many type classes in libraries such as Scalaz and Spire are inspired by mathematics Mathematics is very much governed by laws Said type classes should have instances which abide by these laws Example: monoids have: An associative binary operation A zero that is an identity in relation to the binary operation This is useful because: It further restricts the behavior of the type class (aids parametricity)
  70. Following the law new Monoid[Int] { def append(x: Int, y:

    Int): Int = x + y def zero: Int = 0 } Many type classes in libraries such as Scalaz and Spire are inspired by mathematics Mathematics is very much governed by laws Said type classes should have instances which abide by these laws Example: monoids have: An associative binary operation A zero that is an identity in relation to the binary operation This is useful because: It further restricts the behavior of the type class (aids parametricity) Allows us to exploit these laws
  71. In the presence of a non-dependently typed type system, we

    cannot statically enforce laws However, laws are perfect for property-based testing (ScalaCheck and Discipline)
  72. In the presence of a non-dependently typed type system, we

    cannot statically enforce laws However, laws are perfect for property-based testing (ScalaCheck and Discipline) ∀(x : Int, y : Int, z : Int), x + (y + z) = (x + y) + z
  73. In the presence of a non-dependently typed type system, we

    cannot statically enforce laws However, laws are perfect for property-based testing (ScalaCheck and Discipline) ∀(x : Int, y : Int, z : Int), x + (y + z) = (x + y) + z ∀(x : Int), x + 0 = 0 + x = x
  74. In the presence of a non-dependently typed type system, we

    cannot statically enforce laws However, laws are perfect for property-based testing (ScalaCheck and Discipline) ∀(x : Int, y : Int, z : Int), x + (y + z) = (x + y) + z ∀(x : Int), x + 0 = 0 + x = x Our code now becomes even more strictly specified by types and their properties
  75. Summary Types are robust, a form of documentation, and not

    just “something for the compiler”
  76. Summary Types are robust, a form of documentation, and not

    just “something for the compiler” Types hint at what a function can do, but more importantly tell us what it cannot do
  77. Summary Types are robust, a form of documentation, and not

    just “something for the compiler” Types hint at what a function can do, but more importantly tell us what it cannot do Types are a static property of your program
  78. Summary Types are robust, a form of documentation, and not

    just “something for the compiler” Types hint at what a function can do, but more importantly tell us what it cannot do Types are a static property of your program Recognize the difference:
  79. Summary Types are robust, a form of documentation, and not

    just “something for the compiler” Types hint at what a function can do, but more importantly tell us what it cannot do Types are a static property of your program Recognize the difference: “Trust me I’m a nice person I will/won’t do that”
  80. Summary Types are robust, a form of documentation, and not

    just “something for the compiler” Types hint at what a function can do, but more importantly tell us what it cannot do Types are a static property of your program Recognize the difference: “Trust me I’m a nice person I will/won’t do that” “It (did not) compile(d)”