The document provides solutions to exercises on algorithms. The first solution describes an algorithm to check if a number is prime by testing all factors from 2 to the number/2. The second generates the first 10 prime numbers by iterating from 2 and checking primality until 10 primes are found. The third accepts a number N and prints N lines with descending numbers from N to 1.