<?xml version="1.0" encoding="UTF-8" ?>
  <resource>
  <id>6610</id>
  <path>/www/nrich/html/content/id/6610/</path>
  <resourceTypeID>1</resourceTypeID>
  <last_published>0000-00-00T00:00:00</last_published>
  <indexXML>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
&lt;mdoxml version=&quot;1.0&quot;&gt;&lt;p&gt;In the video below, Alison works out \(\sum_{i=1}^{10} i\).&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;iframe allowfullscreen=&quot;&quot; frameborder=&quot;0&quot; height=&quot;315&quot; src=&quot;http://www.youtube.com/embed/gIZRruHIJdk&quot; width=&quot;420&quot;&gt;&lt;/iframe&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;How could you adapt her method to work out the following sums?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;$\sum_{i=1}^{100} i$&lt;br&gt;&lt;/br&gt;
 &lt;/li&gt;
&lt;li&gt;$2+4+6+\dots+96+98+100$&lt;br&gt;&lt;/br&gt;
 &lt;/li&gt;
&lt;li&gt;$\sum_{k=1}^{20} (4k+12)$&lt;br&gt;&lt;/br&gt;
 &lt;/li&gt;
&lt;li&gt;$37+42+47+52+\dots+102+107+112$&lt;br&gt;&lt;/br&gt;
 &lt;/li&gt;
&lt;li&gt;The sum of the first $n$ terms of the sequence $a, (a+d), (a + 2d), (a + 3d) \dots$&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;After how many terms would $17+21+25+\dots$ be greater than $1000$?&lt;/p&gt;
&lt;p&gt;Can you find the sum of all the integers less than $1000$ which are not divisible by $2$ or $3$?&lt;/p&gt;
&lt;p&gt;Can you find a set of consecutive positive integers whose sum is 32?&lt;/p&gt;&lt;/mdoxml&gt;</indexXML>
  <solutionXML>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
&lt;mdoxml version=&quot;1.0&quot;&gt;&lt;span class=&quot;editorial&quot;&gt;Amrit explained how to find a formula for the sum of consecutive numbers, and then adapted it to answer the other questions:&lt;/span&gt;&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
Pair the values as follows:&lt;br&gt;&lt;/br&gt;
&lt;table style=&quot;border-spacing:1px;&quot; border=&quot;1&quot;&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;td&gt;2&lt;/td&gt;
&lt;td&gt;3&lt;/td&gt;
&lt;td&gt;...&lt;/td&gt;
&lt;td&gt;n&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;n&lt;/td&gt;
&lt;td&gt;n-1&lt;/td&gt;
&lt;td&gt;n-2&lt;/td&gt;
&lt;td&gt;...&lt;/td&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;br&gt;&lt;/br&gt;
Each of the columns sums to $n + 1$, and there are $n$ columns, so the sum&lt;br&gt;&lt;/br&gt;
should be $n(n + 1)$. However, as each column is counted twice (once in each&lt;br&gt;&lt;/br&gt;
possible order of the two values), the sum is $\frac{n(n + 1)}{2}$.&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
$2 + 4 + 6 + ... + 96 + 98 + 100 = 2(1 + 2 + 3 + ... + 48 + 49 + 50)$&lt;br&gt;&lt;/br&gt;
which equals $2 \times \frac{50(50 + 1)}{2} = 50(50 + 1) = 50 \times 51 = 2550$.&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
$$\sum_{k=1}^{20}(4k + 12) = 4(\sum_{k=1}^{20} k) + \sum_{k=1}^{20} 12$$&lt;br&gt;&lt;/br&gt;
$$= 4 \times \frac{20(20 + 1)}{2} + 12\times20 = 840 + 240 = 1080$$&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
For the last part, the minimum possible sum for 7 consecutive numbers is 1&lt;br&gt;&lt;/br&gt;
+ 2 + 3 + 4 + 5 + 6 + 7 = 28 and the minimum for 8 is 1 + 2 + 3 + 4 + 5 + 6&lt;br&gt;&lt;/br&gt;
+ 7 + 8 = 36. Thus, there must be at most 7 consecutive numbers. We try:&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
2 consecutive numbers: a + a + 1 = 32 -&amp;amp;gt; 2a = 31 -&amp;amp;gt; no solution.&lt;br&gt;&lt;/br&gt;
3 consecutive numbers: a + a + 1 + a + 2 = 32 -&amp;amp;gt; 3a = 29 -&amp;amp;gt; no&lt;br&gt;&lt;/br&gt;
solution.&lt;br&gt;&lt;/br&gt;
4 consecutive numbers: a + a + 1 + a + 2 + a + 3 = 32 -&amp;amp;gt; 4a = 26 -&amp;amp;gt;&lt;br&gt;&lt;/br&gt;
no solution.&lt;br&gt;&lt;/br&gt;
5 consecutive numbers: a + a + 1 + a + 2 + a + 3 + a + 4 = 32 -&amp;amp;gt; 5a = 22&lt;br&gt;&lt;/br&gt;
-&amp;amp;gt; no solution.&lt;br&gt;&lt;/br&gt;
6 consecutive numbers: a + a + 1 + a + 2 + a + 3 + a + 4 + a + 5 = 32 -&amp;amp;gt;&lt;br&gt;&lt;/br&gt;
6a = 17 -&amp;amp;gt; no solution.&lt;br&gt;&lt;/br&gt;
7 consecutive numbers: a + a + 1 + a + 2 + a + 3 + a + 4 + a + 5 + a + 6 =&lt;br&gt;&lt;/br&gt;
32 -&amp;amp;gt; 7a = 11 -&amp;amp;gt; no solution.&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
Thus, there is no set of positive integers that sums to 32.&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
&lt;span class=&quot;editorial&quot;&gt;Josh derived the sum for an arithmetic progression with first term $a$, difference $d$ and $n$ terms, and used it to solve the remaining questions:&lt;/span&gt;&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
To prove the sum formula we can do the following:&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
$S_n = a + (a + d) + (a + 2d) + ... + (a + [n-2]d) + (a + [n-1]d)$&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
If we reverse the sum we get:&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
$S_n =  (a + [n-1]d) +  (a + [n-2]d) + ... + (a + 2d) + (a + d) + a$&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
Note that there are n terms in both these expressions.  Adding the two&lt;br&gt;&lt;/br&gt;
equations together, matching up the terms from the first sequence with&lt;br&gt;&lt;/br&gt;
their reversed terms gives us&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
$2S_n = (2a + [n-1]d) + (2a + [n-1]d) + ... + (2a + [n-1]d)$&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
Note that there are still n terms in this expression. Since they are all&lt;br&gt;&lt;/br&gt;
now the same, we now actually have n(2a + [n-1]d) so all that is left is to&lt;br&gt;&lt;/br&gt;
divide by two to give:&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
$S_n = (\frac{n}{2})(2a + [n-1]d)$.&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
&lt;strong&gt;After how many terms would $17+21+25+…$ be greater than $1000$?&lt;/strong&gt;&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
We can use the formula backwards to find $n$.  We can&lt;br&gt;&lt;/br&gt;
see that $a = 17$ and $d = 4$ and that $S_n &amp;amp;gt; 1000$&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
Therefore&lt;br&gt;&lt;/br&gt;
$\frac{n}{2}(34 + 4[n-1]) &amp;amp;gt; 1000$&lt;br&gt;&lt;/br&gt;
$30n + 4n^2 &amp;amp;gt; 2000$&lt;br&gt;&lt;/br&gt;
$2n^2 + 15n - 1000 &amp;amp;gt; 0$&lt;br&gt;&lt;/br&gt;
$n &amp;amp;gt; ( - 15 + \sqrt{225 + 8000} ) / 4$&lt;br&gt;&lt;/br&gt;
$n &amp;amp;gt; 18.922946...$&lt;br&gt;&lt;/br&gt;
$n = 19$        (I only took the +ve solution of n since we can&amp;#39;t have a negative number of terms)&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
&lt;strong&gt;Can you find the sum of all the integers less than 1000 which are not divisible by 2 or 3?&lt;/strong&gt;&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
We have to consider a way to express the numbers which aren&amp;#39;t divisible by two or three.&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
The first few are: $1, 5, 7, 11, 13, 17, 19, 23, 25...$&lt;br&gt;&lt;/br&gt;
We can see that we have repeating differences of $4$ and $2$, but if we&lt;br&gt;&lt;/br&gt;
separate them up we can get two sequences with differences of $6$:&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
$, 7, 13, 19, 25...$     and $5, 11, 17, 23...$&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
For the first sequence, $a = 1, d = 6$ and the $n^{th}$ term is the biggest number&lt;br&gt;&lt;/br&gt;
of the form $6m + 1$ that is still less than $1000$.  I found this number to be&lt;br&gt;&lt;/br&gt;
$997$.&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
$1 + 6(n-1) = 997$&lt;br&gt;&lt;/br&gt;
$n - 1 = 166$&lt;br&gt;&lt;/br&gt;
$n = 167$&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
So $S_167 = 83.5(2 + 996) = 83333$&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
For the second sequence I did the same thing, but with $a = 5$ and the $n^{th}$&lt;br&gt;&lt;/br&gt;
term being the largest number of the form $6m + 5$ but still less than $1000$,&lt;br&gt;&lt;/br&gt;
which is $995$.&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
$5 + 6(n-1) = 995$&lt;br&gt;&lt;/br&gt;
$(n-1) = 165$&lt;br&gt;&lt;/br&gt;
$n = 166$&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
So $S_166 = 83(10 + 990) = 83000$&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
Therefore the sum of all integers that are not divisible by $2$ or $3$ and are&lt;br&gt;&lt;/br&gt;
less than $1000$ is $83000 + 83333 = 166,333$&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
&lt;strong&gt;Can you find a set of consecutive positive integers whose sum is 32?&lt;/strong&gt;&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
Consecutive =&amp;amp;gt; d = 1&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
So $\frac{n}{2}(2a + n - 1) = 32$, so $n(2a + n - 1) = 64$&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
Since n &amp;amp;gt; 0, I decided to work with increasingly large values of n up&lt;br&gt;&lt;/br&gt;
until the point where they began to return smaller and smaller decimals or&lt;br&gt;&lt;/br&gt;
negatives or any other sign that I wouldn&amp;#39;t get any more valid values of&lt;br&gt;&lt;/br&gt;
a.&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
$n = 1$&lt;br&gt;&lt;/br&gt;
$2a = 64$&lt;br&gt;&lt;/br&gt;
$a = 32$  &amp;amp;lt;- this is only one number though so it doesn&amp;#39;t really count!&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
$n = 2$&lt;br&gt;&lt;/br&gt;
$4a + 2 = 64$&lt;br&gt;&lt;/br&gt;
$4a = 62$&lt;br&gt;&lt;/br&gt;
$a = 15.5$ &amp;amp;lt;- invalid number since the series consists of positive integers&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
$n = 3$&lt;br&gt;&lt;/br&gt;
$6a + 6 = 64$&lt;br&gt;&lt;/br&gt;
$6a = 58$&lt;br&gt;&lt;/br&gt;
$a = 9.66...$ &amp;amp;lt;- invalid number since the series consists of positive integers&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
At this point I realised a quicker way to get $a$: rearrange the equation to&lt;br&gt;&lt;/br&gt;
make a the subject.&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
$n(2a + n - 1) = 64$&lt;br&gt;&lt;/br&gt;
$2a + n - 1 = 64/n$                        [1]&lt;br&gt;&lt;/br&gt;
$2a = 64/n + 1 - n = (64 + n - n^2)/n$&lt;br&gt;&lt;/br&gt;
$a = (64 + n - n^2)/2n$&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
By the line marked [1] I could see that n had to be even since otherwise we&lt;br&gt;&lt;/br&gt;
would get a non-integer value for 64/n which would lead to a non-integer&lt;br&gt;&lt;/br&gt;
a.&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
$n = 4$ gives $a = 6.5$    Not valid&lt;br&gt;&lt;/br&gt;
$n = 6$ gives $a = 2.8333$ Not valid&lt;br&gt;&lt;/br&gt;
$n = 8$ gives $a = 0.5$    Not valid&lt;br&gt;&lt;/br&gt;
$n = 10$ gives $a = -1.3$  Not valid&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
As n -&amp;amp;gt; infinity, the constant term in the numerator and&lt;br&gt;&lt;/br&gt;
the n term in the numerator become arbitrarily small compared to the -n^2.&lt;br&gt;&lt;/br&gt;
So a therefore approaches (-n^2)/2n = -n/2 and so a will continue getting&lt;br&gt;&lt;/br&gt;
more and more negative and so we can stop checking n terms and conclude&lt;br&gt;&lt;/br&gt;
that there are no sets of consecutive positive integers whose sum is 32.&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
&lt;span class=&quot;editorial&quot;&gt;Rajeev had a different approach for the penultimate question:&lt;/span&gt;&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
&lt;strong&gt;Can you find the sum of all the integers less than 1000 which are not divisible by 2 or 3?&lt;/strong&gt;&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
Here we first find the sum of all integers which are divisible by 2 and then find the sum of all integers which are divisible by 3 and add these two up and then subtract the sum of the integers that are divisible by 6&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
$999 \times 1000 /2 = 499500$&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
Multiples of 2:&lt;br&gt;&lt;/br&gt;
$499 \times 1000 /2 =  249500$&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
Multiples of 3:&lt;br&gt;&lt;/br&gt;
$333 \times 1002/2 =  166833$&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
As multiples of 2 and 3 have duplications they must be removed by counting the number of multiples of 6:&lt;br&gt;&lt;/br&gt;
$166 x 1002/2 =  83166$&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
$499500 – (249500 +166833 – 83166)= 166333$&lt;br&gt;&lt;/br&gt;
The sum of all the integers less than 1000 which are not divisible by 2 or 3 is166333&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
&lt;span class=&quot;editorial&quot;&gt;Well done to Abi from Wilberforce Sixth Form College who sent in a clear solution similar to Josh&amp;#39;s and Amrit&amp;#39;s.&lt;/span&gt;&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;
&lt;br&gt;&lt;/br&gt;&lt;/mdoxml&gt;</solutionXML>
  <noteXML>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
&lt;mdoxml version=&quot;1.0&quot;&gt;&lt;h3&gt;Why do this problem?&lt;/h3&gt;
&lt;p&gt;This problem provides an introduction to summing arithmetic series, and allows students to discover for themselves the formulae used to calculate such sums. By seeing a particular case, students can perceive the structure and see where the general method for summing such series comes from.&lt;/p&gt;
&lt;p&gt;The problem could be used to introduce $\sum$ notation.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;h3&gt;Possible approach&lt;/h3&gt;
&lt;p&gt;You may wish to show the video, in which Alison works out $\sum_{i=1}^{10} i$ in silence, or you may wish to recreate the video for yourself on the board.&lt;/p&gt;
&lt;p&gt;Then write up $\sum_{i=1}^{100} i$ and ask students to adapt Alison&amp;#39;s method to work it out. Share answers and explanations of how they worked it out.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Next, give students the following questions:&lt;/p&gt;
&lt;p&gt;$2+4+6+\dots+96+98+100$&lt;/p&gt;
&lt;p&gt;$\sum_{k=1}^{20} (4k+12)$&lt;/p&gt;
&lt;p&gt;$37+42+47+52+\dots+102+107+112$&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&amp;quot;Can you adapt the method to work out these three sums? In a while I&amp;#39;m going to give you another question like these and you&amp;#39;ll need to be able to work it out efficiently&amp;quot;&lt;/p&gt;
&lt;p&gt;While students are working, listen out for useful comments that they make about how to work out such sums generally. Then bring the class together to share answers and methods for the questions they have worked on.&lt;/p&gt;
&lt;p&gt;Make up a few questions like those above, and invite students out to the board to work them out &amp;#39;on the spot&amp;#39;, explaining what they do as they go along.&lt;/p&gt;
&lt;p&gt;Next, invite students to create a formula from their general thinking:&lt;br&gt;&lt;/br&gt;
&amp;quot;Imagine a sequence that starts at $a$ and goes up in equal steps to the $n^{th}$ term which is $l$. Can you use what you did with the numerical examples to create a formula for the sum of the series?&amp;quot;&lt;/p&gt;
&lt;p&gt;Give students time to think and discuss in pairs and then share their suggestions.&lt;/p&gt;
&lt;p&gt;&amp;quot;What if you were asked to find the sum of the first $n$ terms of the sequence $a, (a+d), (a + 2d), (a + 3d) $ and so on - can you adapt your formula?&amp;quot;&lt;/p&gt;
&lt;p&gt;Again, allow some time for discussion before bringing the class together to share what they did.&lt;/p&gt;
&lt;p&gt;Finally, &amp;quot;Can you use your formula to work out after how many terms would $17+21+25+\dots$ be greater than $1000$?&amp;quot;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;h3&gt;Key questions&lt;/h3&gt;
&lt;p&gt;What can you say about the sum of the first and last, and the second and penultimate terms of an arithmetic sequence?&lt;/p&gt;
&lt;p&gt;How do you know these sums of pairs will always be the same?&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;h3&gt;Possible extension&lt;/h3&gt;
&lt;p&gt;Challenge students to find the sum of all the integers less than $1000$ which are not divisible by $2$ or $3$.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;/315&quot;&gt;Summats Clear&lt;/a&gt; would make a nice extension challenge for students who have found this problem straightforward.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;h3&gt;Possible support&lt;/h3&gt;
&lt;p&gt;&lt;a href=&quot;/6710&quot;&gt;Slick Summing&lt;/a&gt; explores the same content as this problem but introduces new ideas more slowly and does not use $\sum$ notation.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;&lt;/mdoxml&gt;</noteXML>
  <clueXML>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
&lt;mdoxml version=&quot;1.0&quot;&gt;&lt;p&gt;If you are finding it hard to get started, look at &lt;a href=&quot;/6710&quot;&gt;Slick Summing&lt;/a&gt; first.&lt;/p&gt;&lt;/mdoxml&gt;</clueXML>
  <canonXML/>
  <end_user_role>2</end_user_role>
  <difficulty>3</difficulty>
  <keystage1>0</keystage1>
  <keystage2>0</keystage2>
  <keystage3>0</keystage3>
  <keystage4>0</keystage4>
  <keystage4plus>1</keystage4plus>
  <title>Speedy summations</title>
  <description>Watch the video to see how to add together an arithmetic sequence of numbers efficiently.</description>
  <spec_group>Sequences, Functions and Graphs
    <specifier>Arithmetic sequence</specifier>
  </spec_group>
  <spec_group>Advanced Algebra
    <specifier>Summation of series</specifier>
  </spec_group>
  <spec_group>Numbers and the Number System
    <specifier>Triangle numbers</specifier>
  </spec_group>
  <spec_group>Information and Communications Technology
    <specifier>Video</specifier>
  </spec_group>
</resource>