Problem 6 has two parts: Part a) asks for translating a given LTL formula to an equivalent omega-automaton. There is a simple algorithm for this that you can find in the lecture slides. This algorithm makes use of a table that determines for each temporal logic operator the required transition relation and acceptance condition. These just have to be written down to obtain the omega-automaton listed in part a).
Part b) discusses whether two LTL formulas are equivalent based on a given path that consists of a cycle of three states s0->s1->s2->s0->... such that s0 is labeled with {b}, s1 is labeled with {a}, and s2 is labeled with {a,c}. You have to determine the truth values of the sub-formulas to finally see whether the given formulas are satisfied the same way on the given path or not. As shown in the solution, the formulas are evaluated differently, so that the path is a counterexample to the claim that the two formulas are equivalent. They are not equivalent as demonstrated with that path, and you should explain why that path tells us so.