1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/// Calculates the nth term of a geometric sequence.
///
/// # Arguments
///
/// * `a` - The first term of the sequence.
/// * `r` - The common ratio of the sequence.
/// * `n` - The term number to calculate (must be greater than 0).
///
/// # Returns
///
/// The nth term of the geometric sequence.
///
/// # Panics
///
/// Panics if `n` is 0.
///
/// # Examples
///
/// ```
/// use numberlab::sequence::geometric::nth_geometric;
/// let term = nth_geometric(1.12, 2.23, 3);
/// assert_eq!(term, 1.12 * 2.23 * 2.23);
/// ```
/// Generates a geometric sequence.
///
/// # Arguments
///
/// * `a` - The first term of the sequence.
/// * `r` - The common ratio of the sequence.
/// * `n` - The number of terms to generate.
///
/// # Returns
///
/// A vector containing the geometric sequence.
///
/// # Examples
///
/// ```
/// use numberlab::sequence::geometric::geometric_sequence;
/// let sequence = geometric_sequence(1.12, 2.23, 3);
/// assert_eq!(sequence, vec![1.12, 1.12 * 2.23, 1.12 * 2.23 * 2.23]);
/// ```
/// Calculates the sum of the first `n` terms of a geometric series.
///
/// # Arguments
///
/// * `a` - The first term of the series.
/// * `r` - The common ratio of the series.
/// * `n` - The number of terms to sum.
///
/// # Returns
///
/// The sum of the first `n` terms of the geometric series.
///
/// # Examples
///
/// ```
/// use numberlab::sequence::geometric::geometric_series;
/// let sum = geometric_series(1.12, 2.23, 3);
/// assert_eq!(sum, 9.187248000000002);
/// ```