= Computational complexity of mathematical operations
{wiki=Computational_complexity_of_mathematical_operations}
Computational complexity refers to the analysis of the resources required to solve computational problems. When discussing mathematical operations, computational complexity typically focuses on two primary resources: time (how long it takes to compute a result) and space (how much memory is required). Here are some common mathematical operations and their computational complexities: 1. **Addition and Subtraction**: - Complexity: \\(O(n)\\), where \\(n\\) is the number of digits in the numbers being added or subtracted.
Back to article page