Calculator Form
Choose a sequence model, set the displayed range, and generate terms. Expressions support n, prev_re, prev_im, and functions such as sin, cos, sqrt, log, exp, min, and max.
Example Data Table
Example shown for the geometric model with a₁ = 1 + 0i and r = 0.7 + 0.4i.
| n | Example an | |an| | arg(an)° |
|---|---|---|---|
| 1 | 1.0000 + 0.0000i | 1.0000 | 0.0000 |
| 2 | 0.7000 + 0.4000i | 0.8062 | 29.7449 |
| 3 | 0.3300 + 0.5600i | 0.6500 | 59.4898 |
| 4 | 0.0070 + 0.5240i | 0.5240 | 89.2347 |
Formula Used
- Explicit model: an = u(n) + i·v(n), where u and v are user-defined real-valued formulas.
- Recursive model: a1 = α + iβ, then Re(an) = f(n, prev_re, prev_im) and Im(an) = g(n, prev_re, prev_im).
- Geometric model: an = a1 · rn-1, where a1 and r are complex numbers.
- Magnitude: |an| = √(Re(an)² + Im(an)²).
- Phase angle: arg(an) = atan2(Im(an), Re(an)).
- Displayed partial sum: Sk = Σ an across the generated range.
- Geometric sum identity: when r ≠ 1, SN = a1(1 - rN) / (1 - r).
How to Use This Calculator
- Select a generation method: explicit, recursive, or geometric.
- Enter the start index, number of displayed terms, and decimal precision.
- Provide the real and imaginary formulas or the complex parameters for the chosen model.
- Click Calculate Complex Sequence to show the results below the header and above the form.
- Review the summary cards, inspect the Plotly graph, and read the full term table.
- Use the CSV or PDF buttons to save the displayed results for reporting or teaching.
Frequently Asked Questions
1) What does this calculator evaluate?
It generates complex sequence terms and reports each term’s real part, imaginary part, magnitude, phase angle, running displayed sum, and consecutive-term ratio.
2) Which sequence types are supported?
You can work with explicit formulas, first-order recursive rules, and complex geometric sequences. That combination covers many classroom and self-study examples.
3) Which variables may I use inside formulas?
Explicit formulas use n. Recursive formulas can use n, prev_re, and prev_im. Standard functions such as sin, cos, sqrt, log, exp, min, and max are also supported.
4) What does the phase angle mean?
The phase angle is the direction of each complex term in the Argand plane. It is measured in degrees using the atan2 function.
5) Why is the ratio column sometimes blank?
The first displayed term has no previous term inside the displayed range. A ratio also becomes undefined when the previous complex term equals zero.
6) Is the convergence hint a formal proof?
No. It is a practical interpretation of the displayed terms only. Use it as a visual clue, not as a rigorous mathematical proof.
7) Can I use this for teaching and assignment checking?
Yes. The summary cards, graph modes, and exports make it useful for demonstrations, worked examples, revision, and quick validation of manually computed terms.
8) Does the calculator export only the visible results?
Yes. The CSV and PDF exports include the currently displayed rows and summary values, so the saved file matches the screen output.