Skip to contents

The funtion_name equation for use in plain texts

Usage

typeset_eq_geometric()

Value

A character string containing a mathematical formula

Examples

typeset_eq_geometric
#> function (inline = FALSE) 
#> {
#>     if (inline) {
#>         "$(1-p)^(n-1)*p$"
#>     }
#>     else {
#>         cat("$(1-p)^(n-1)*p$")
#>     }
#> }
#> <bytecode: 0x5607bfe5e8f0>
#> <environment: namespace:ma206equations>