The Scholaric Challenge

At the Midwest Parent Educators Conference, Scholaric was put to the test.  A new user signed up, set up a course and wanted help entering a complex repeating lesson.  It is a useful case study to explain what Scholaric can do, and how to go about analyzing.

The facts have been changed to protect the innocent...

"My Math program has 25 lessons, each of which are divided into 6 parts, a, through f..."

Okay, no problem Scholaric handles that.

"...but we do 2 parts per day..."

Sure, Scholaric does that too.

"...AND we are on lesson 7, and have already done parts a and b of it..."

That's a lot to consume, but we want to generate

Lesson 7 parts c-d
Lesson 7 parts e-f
Lesson 8 parts a-b
Lesson 8 parts c-d
Lesson 8 parts e-f
Lesson 9 parts a-b
Lesson 9 parts c-d
Lesson 9 parts e-f
...

and so on.  

Breaking this down, it first is a nested sequence, an outer numeric sequence {7-25} and an inner alphabetic sequence {a-f}:

Lesson {7-25} parts {a-f}

But that would be one part per day.  To do 2 parts per day, we need to use the group operator * (increment it two times per day):

Lesson {7-25} parts {a-f*2}

The only problem is that the first lesson must be Lesson 7 parts c-d, not Lesson 7 parts a-b.  I can't just change the inner sequence to parts {c-f*2}, because Lesson 8 must start with parts a-b.  This is accomplished through seeding, using the colon:

Lesson {7-25} parts {a-f*2:c}

This way, the inner sequence is a-f, but starts with c-f.

Happy Planning

4 responses
I can't get this to work. I am planning for Teaching Textbooks. This is what I put into the description Chapter {1-20} Lesson {1-10, 11-19, 20-27, 28-32, 33-39, 40-46, 47-56, 57-63, 64-73, 74-78, 79-86, 87-93, 94-104, 105-108, 109-113, 114-119, 120-130, 131-135, 136-140, 141-142 } It puts in the first day Chapter 1 and all of the lessons written out, same for the rest of the chapters. I marked repeat and 142 lessons. Help
Remove spaces from enumerated range
2 visitors upvoted this post.