In the explicit equation, x represents the nth term. y represents the actual term.
So if x=8 for 8th term, then
y = 10(8) - 2 = 80 - 2 = 78 is the actual term.
20th term:
Solve for y when x=20.
In the recursive, you add the value that is given to you, which is 78, then add 10 to it. Let me show you how it works.
now = previous + 10
now = 78 + 10 = 88 ---> value (9th term)
The original "previous" represented the 8th term.
now = 88 + 10 = 98 ----> value (10th term)
now = 98 + 10 = 108 -----> value (11th term)
now = 108 + 10 = 118 ----> value (12th term)
Continue this pattern until you get to 20th term.