Skip to content
This article is for educational purposes. We encourage you to verify with official sources.

تسلسلات ومتسلسلات: فهم الأساسيات والتطبيقات

هل لاحظت يومًا كيف ترصف البلاطات في ساحة الجامع؟ أو كيف ترتب التمور في السوق؟ هناك أنماط معينة تكرر herself. هذه الأنماط هي في الواقع تسلسلات رياضية. ولكن ماذا إذا أردت حساب العدد الإجمالي للبلاطات في أول 10 صفوف؟ هنا يأتي دور المتسلسلات!

الأساسيات: ما هي التسلسلات والمتسلسلات؟

Definition: : التسلسل هو قائمة من الأعداد مرتبة بشكل محدد. على سبيل المثال، 1، 2، 3، 4، ... هو تسلسل.

Definition: : المتسلسلة هي مجموع حدود التسلسل. على سبيل المثال، 1 + 2 + 3 + 4 + ... هي متسلسلة.

أنواع التسلسلات

هناك أنواع مختلفة من التسلسلات، ولكن الأكثر شيوعًا هي التسلسلات الحسابية والهندسية.

  1. التسلسل الحسابي: في التسلسل الحسابي، الفرق بين الحدود المتتالية ثابت. على سبيل المثال، 2، 5، 8، 11، ... حيث الفرق المشترك هو 3.

  2. التسلسل الهندسي: في التسلسل الهندسي، النسبة بين الحدود المتتالية ثابتة. على سبيل المثال، 3، 9، 27، 81، ... حيث النسبة المشتركة هي 3.

Let's look at a table comparing these two types:

النوع المثال الفارق/النسبة الصيغة العامة
حسابية 2, 5, 8, 11 3 a_n = a_1 + (n-1)d
هندسية 3, 9, 27, 81 3 a_n = a_1 * r^(n-1)

مجموع المتسلسلات

يمكن حساب مجموع أول n حدًا من متسلسلة حسابية باستخدام الصيغة:

$$ S_n = \frac{n}{2} (a_1 + a_n) $$

بالنسبة للمتسلسلة الهندسية، مجموع أول n حدًا هو:

$$ S_n = a_1 \frac{1 - r^n}{1 - r} $$

حيث ( r \neq 1 ).

Example: : Let's calculate the sum of the first 10 terms of the arithmetic sequence 2, 5, 8, 11, ...

First, we identify the first term ( a_1 = 2 ) and the common difference ( d = 3 ).

The 10th term ( a_{10} ) can be found using the formula for the nth term of an arithmetic sequence:

$$ a_n = a_1 + (n-1)d $$

So,

$$ a_{10} = 2 + (10-1) \times 3 = 2 + 27 = 29 $$

Now, we can use the sum formula:

$$ S_{10} = \frac{10}{2} (2 + 29) = 5 \times 31 = 155 $$

مشكلات محلولة

Let's solve a problem involving a geometric series.

Problem: Find the sum of the first 6 terms of the geometric sequence 3, 9, 27, 81, ...

First, we identify the first term ( a_1 = 3 ) and the common ratio ( r = 3 ).

Using the sum formula for a geometric series:

$$ S_n = a_1 \frac{1 - r^n}{1 - r} $$

So,

$$ S_6 = 3 \frac{1 - 3^6}{1 - 3} = 3 \frac{1 - 729}{-2} = 3 \frac{-728}{-2} = 3 \times 364 = 1092 $$

أخطاء شائعة

Warning: : One common mistake is confusing the formulas for arithmetic and geometric sequences. Remember, arithmetic sequences have a common difference, while geometric sequences have a common ratio.

Another common mistake is forgetting to check if the common ratio is 1 when using the geometric series sum formula. If ( r = 1 ), the sum is simply ( S_n = n \times a_1 ).

تمارين عملية

Now it's your turn! Let's practice with an exercise.

Exercise: Find the sum of the first 8 terms of the arithmetic sequence 5, 10, 15, 20, ...

First, identify the first term and the common difference. Then, use the formula for the sum of an arithmetic series.

ملخص

Key point: : Sequences and series are fundamental concepts in mathematics. Remember that a sequence is a list of numbers, and a series is the sum of those numbers. The key formulas are:

Free resources. Explore more courses, quizzes, exercises and revision sheets — Browse all content for your country.

Free content — sharing allowed with credit to ORBITECH AI Academy.