OK, I have tracked down the problem. There are two factors involved that combined to make this fail in just that one answer, and not here or in editing. The first issue is that when you use \tag{xyz}, MathJax marks the element that contains the tag with id="mjx-eqn-xyz" so that it can be referenced with a link (this is part of the support for numbered equations, \label{}, and \ref{}). So your \tag{3} introduced an element with id="mjx-eqn-3". The problem is that there is already an equation on the page with that same tag, and so that same id is already in use, and technically that is invalid HTML (id's are supposed to be unique). MathJax uses the id in order to locate the DOM element associated with a given internal MathML element, and when there are duplicate id's that can cause confusion, which is what happened in this case.
The need to do such lookups is rare (mostly having to do with stretchy elements), so the problem doesn't always show up, but in this instance, there was a second factor involved that contributed to the problem. That factor is that this is the first equation on the page that requires large parentheses. These are stored in a separate font from most of the other characters (there are special fonts for the stretchy characters in five different sizes), and the first time one of those characters is needed, MathJax must load the web font for that size. While the font is being loaded, MathJax cancels the math processing and sets things up to restart the current equation once the font is available. But because the equation has been partly processed, it turns out that MathJax thinks that the DOM element for the previous \tag{3} is part of the current equation (rather than creating a new element as it should), since they have the same id, and that caused parent elements to be out of whack, leading to data not being saved where it was expected to be, and eventually a MathJax math processing error.
There is an easy change to prevent MathJax from reusing an element that has the wrong parent, and that will fix this particular problem, but it doesn't resolve the fact that the two equations have the same id's (and I don't see an obvious way to prevent it since the input is processed and the id's attached long before any output is added to the page).
The bug fix will be in the next release of MathJax, but for now you might be able to avoid the issue of restarting in the equation with the duplicate tag by forcing the large-size font to be loaded earlier on. One way might be to add something like
$\smash{\rlap{\phantom{\Bigg(}}}$
at the beginning of your answer to force a large parenthesis to be typeset, but without taking up any space. Ugly, but probably effective.