An experimental traffic light has three lights: red \(R\), yellow \(A\) and green \(V\). Each light is worth 1 if it is on and 0 if it is off.
Each minute is updated with this rule: the red one takes the value of \(\neg A\) (that is, the opposite of \(A\): if \(A=0\), it goes to 1; if \(A=1\), it goes to 0), the yellow takes the previous value of \(V\), and the green takes the previous value of \(R\). If you start at \((R,A,V)=(0,0,0)\), at what minute does that exact same state first appear again?