In page 127 of R.J. LeVeque's "Numerical Methods for conservation laws" (Birkhäuser, 1992),
There are various ways that [the Lax-Wendroff method for constant-coefficient linear hyperbolic systems] can be extended to give a second order method for nonlinear conservation laws. If we let $A(u) = f'(u)$ be the Jacobian matrix, then a conservative form of Lax-Wendroff is $$ U_j^{n+1} = U_j^n - \frac{k}{2h}(f(U_{j+1}^n - f(U_{j-1}^n)) + \frac{k^2}{2h^2} \big[ A_{j+1/2} (f(U_{j+1}^n) - f(U_j^n)) \\ - A_{j-1/2} (f(U_{j}^n) - f(U_{j-1}^n)) \big] \, , \tag{12.25} $$ where $A_{j\pm1/2}$ is the Jacobian matrix evaluated at $\frac12 (U_j^n + U_{j\pm 1}^n)$.
I am trying to understand the paragraph above, which is pretty much the same as in the Wikipedia article. First of all, how was this derived and how is it in conservative form? Moreover, Why are we evaluating a jacobian at $\frac12 (U_j^n + U_{j \pm 1}^n )$? Isnt this the value of the solution $u= u(x)$ evaluated at some discrete point? Im confused by this notation. Can someone clarify this?
My question is related to an exercise of this book:
EXERCISE 12.3. [The method] $(12.25)$ reduces to [the classical linear Lax-Wendroff method] in the constant coefficient linear case and is second order accurate on smooth solutions (to nonlinear problems) and conservative. Verify these statements for at least [$(12.25)$] and write it in conservation form, determining the numerical flux function.