10.3
등차수열은 각 항을 이전 항에 공차라고 하는 상수를 더하여 얻는 체계적인 수의 배열입니다. 이와 같은 일관된 패턴 덕분에 수열의 임의의 항을 효율적으로 구할 수 있을 뿐 아니라 여러 항의 누적합도 계산할 수 있습니다. 등차수열의 n번째 항을 구하는 공식은 다음과 같이…
산술 수열은 각 항이 공통 차이로 알려진 동일한 고정 숫자만큼 증가하거나 감소하는 숫자 목록입니다. 기둥 더미를 생각해 보십시오. 첫 번째 레이어에는 25개의 극이 포함되어 있으며 극의 수는 각 연속 레이어에서 1씩 계속 감소합니다.
더미에 12개의 레이어가 있다는 점을 감안할 때 목표는 총 기둥 수를 찾는 것입니다.
이 배열은 극의 수가 한 층에서 다음 층으로 일정한 양만큼 감소함에 따라 산술 시퀀스를 형성합니다.
이 시나리오에서 12번째 계층의 극 수는 첫 번째 항, 공통 차이 및 계층 수를 기반으로 산술 수열의 n번째 항에 대한 공식을 사용하여 계산됩니다. 그런 다음 이러한 항의 값을 공식으로 대체하여 25에서 11을 뺀 값으로 단순화하여 12번째 레이어에 14개의 극을 제공합니다.
시퀀스의 부분합으로 알려진 더미의 총 극 수는 첫 번째 층과 마지막 층의 극 수의 평균에 총 층 수를 곱하여 계산됩니다. 시퀀스의 처음 12개 항만 추가되기 때문에 부분 합이라고 합니다. 그 결과 12의 부분 합에 25와 14의 평균을 곱하여 234개의 극이 됩니다.
View the full transcript and gain access to JoVE Core videos
Q1: What is a common difference in an arithmetic sequence?
The common difference is the fixed constant value added to or subtracted from each term to get the next term in an arithmetic sequence. In the pole pile example, the common difference is -1 because the number of poles decreases by one in each successive layer. This consistent pattern allows you to predict any term in the sequence without listing all preceding terms.
Q2: How do you find the nth term of an arithmetic sequence?
Use the formula aₙ = a + (n - 1)d, where aₙ is the nth term, a is the first term, d is the common difference, and n is the term position. For the pole pile with 25 poles in layer 1 and common difference -1, the 12th layer contains 25 + (12 - 1)(-1) = 14 poles. This formula eliminates the need to calculate every preceding term.
Q3: What is the partial sum formula for an arithmetic sequence?
The partial sum Sₙ equals n times the average of the first and last terms: Sₙ = n(a + aₙ)/2. For the 12-layer pole pile, the total is 12 × (25 + 14)/2 = 234 poles. This formula efficiently computes the sum of the first n terms without adding each term individually, making it practical for large sequences.
Q4: Why is the pole pile arrangement considered an arithmetic sequence?
The pole pile forms an arithmetic sequence because each layer contains a constant decrease of one pole from the previous layer. This consistent pattern of change—the common difference—is the defining characteristic of arithmetic sequences. The structured arrangement allows systematic calculation of any layer's pole count and the total across all layers.
Q5: How does the partial sum differ from the total sum of an infinite sequence?
A partial sum calculates only the first n terms of a sequence, as shown when finding the total of 12 layers in the pole pile. The partial sum formula Sₙ = n(a + aₙ)/2 applies to a finite number of terms. This approach is practical for real-world applications where you need the cumulative total of a specific portion rather than an entire infinite sequence.
Q6: Can you use arithmetic sequences to solve real-world stacking problems?
Yes, arithmetic sequences model real-world stacking scenarios like the pole pile, where items decrease or increase by a constant amount per layer. By identifying the first term, common difference, and number of layers, you can calculate individual layer quantities using the nth term formula and total inventory using summation notation. This systematic approach simplifies inventory and structural calculations.
Q7: What is the relationship between arithmetic sequences and geometric sequences?
Arithmetic sequences use addition of a constant common difference, while geometric sequences use multiplication by a constant ratio. Both are structured numerical patterns that allow efficient term and sum calculations. Understanding arithmetic sequences provides foundational knowledge for comparing with geometric sequences and recognizing which pattern applies to different real-world or theoretical problems.