Carl.prototype.cdf = function(x) {
  var z = (x - this.mean) / Math.sqrt(this.variance);
  return this.distribution.cdf(x);
};