R/gamma_series.R

Defines functions sampler.gamma_series surv.gamma_series gamma_series

Documented in gamma_series sampler.gamma_series surv.gamma_series

# ==========================================================================
# Closed-form series of Gamma components
# ==========================================================================
#
# For a series of m independent Gammas with shapes k_j and rates r_j:
#   S_sys(t) = prod_j P(Gamma_j > t) = prod_j stats::pgamma(t, k_j, r_j,
#                                                            lower.tail = FALSE)
# No closed-form CDF inverse for the system in general; sampler uses min
# of independently sampled Gammas.
# ==========================================================================


#' Series of independent Gamma components (closed form)
#'
#' Constructs a `dist_structure` for a series system whose components are
#' independent Gammas. Closed-form `surv` is evaluated by the product of
#' per-component upper-tail probabilities; `cdf` is `1 - surv`; `sampler`
#' generates m independent Gammas and takes the min.
#'
#' @param shapes Positive numeric vector of length `m`: per-component
#'   Gamma shape parameters.
#' @param rates Positive numeric vector of length `m`: per-component
#'   Gamma rate parameters.
#' @return
#' `gamma_series()` returns an object of class
#'   `c("gamma_series", "series_dist", "coherent_dist", "dist_structure",
#'   "univariate_dist", "continuous_dist", "dist")`.
#'
#' The associated S3 methods return:
#' - `surv()`: a closure `function(t, ...)`.
#' - `cdf()` is derived via the `dist_structure` default and returns
#'   a closure `function(t, ...)` equal to `1 - surv(x)(t)`.
#' - `sampler()`: a closure `function(n, ...)` returning `n` random
#'   variates from the system lifetime distribution.
#' @examples
#' sys <- gamma_series(shapes = c(2, 3), rates = c(1, 2))
#' algebraic.dist::surv(sys)(1)
#' @export
gamma_series <- function(shapes, rates) {
  stopifnot(length(shapes) == length(rates),
            all(shapes > 0), all(rates > 0))
  m <- length(shapes)
  components <- lapply(seq_len(m), function(j) {
    algebraic.dist::gamma_dist(shape = shapes[j], rate = rates[j])
  })
  obj <- series_dist(components)
  obj$shapes <- as.numeric(shapes)
  obj$rates <- as.numeric(rates)
  class(obj) <- c("gamma_series", class(obj))
  obj
}


#' @rdname gamma_series
#' @param x A `gamma_series` object.
#' @param ... Ignored.
#' @export
surv.gamma_series <- function(x, ...) {
  series_surv_product(stats::pgamma,
                      list(shape = x$shapes, rate = x$rates))
}


#' @rdname gamma_series
#' @export
sampler.gamma_series <- function(x, ...) {
  samplers <- make_component_samplers(stats::rgamma,
                                      shape = x$shapes, rate = x$rates)
  function(n, ...) {
    apply(sample_component_matrix(samplers, n), 1L, min)
  }
}

Try the dist.structure package in your browser

Any scripts or data that you put into this service are public.

dist.structure documentation built on May 13, 2026, 1:07 a.m.