I would like to prove the following finite-difference formula for functions $u$ and the flux $f$:
$$\frac{u_{i}^{n+1}-u_{i}^{n}}{\Delta t}+\frac{-f\left(u_{i+2}^{n+1}\right)+8 f\left(u_{i+1}^{n+1}\right)-8 f\left(u_{i-1}^{n+1}\right)+f\left(u_{i-2}^{n+1}\right)}{12 \Delta x}=0$$
This pair $(u,f)$ and it's discretized form as written above, should be conservative, ie. suppose mass is conserved. Then for example
$$\begin{array}{l}{\text {change in total mass in }[a, b] \text { in time interval }\left[t_{1}, t_{2}\right]=\text { net mass passing through}} \\ {\text {boundaries of }[a, b] \text { in time interval }\left[t_{1}, t_{2}\right] .}\end{array}$$
i.e.,
$$\int_{a}^{b}\left[\mathbf{u}\left(x, t_{2}\right)-\mathbf{u}\left(x, t_{1}\right)\right] d x=-\int_{t_{1}}^{t_{2}}[\mathbf{f}(b, t)-\mathbf{f}(a, t)] d t$$
Now for each cell during each time interval we have
$$\int_{x_{i-1 / 2}}^{x_{i+1 / 2}}\left[u\left(x, t^{n+1}\right)-u\left(x, t^{n}\right)\right] d x=-\int_{t^{n}}^{t^{n+1}}\left[f\left(u\left(x_{i+1 / 2}, t\right)\right)-f\left(u\left(x_{i-1 / 2}, t\right)\right)\right] d t\,\,\,\,\,(*)$$
$\begin{array}{l}{\text {where we suppose that space is divided into cells }\left[x_{i-1 / 2}, x_{i+1 / 2}\right], \text { where } x=x_{i+1 / 2} \text { is called }} \\ {\text { a cell edge. Also, suppose that time is divided into time intervals }\left[t^{n}, t^{n+1}\right], \text { where } t=t^{n}} \\ {\text { is called a time level. }}\end{array}$
Then the numerical version of this conservative form is , by using trapezoidal method to approximate the integral, as
$$\overline{u}_{i}^{n+1}=\overline{u}_{i}^{n}-\lambda\left(\hat{f}_{i+1 / 2}^{n}-\hat{f}_{i-1 / 2}^{n}\right)$$
where $$\overline{u}_{i}^{n} \approx \frac{1}{\Delta x} \int_{x_{i-1 / 2}}^{x_{i+1 / 2}} u\left(x, t^{n}\right) d x$$
$$\hat{f}_{i+1 / 2}^{n} \approx \frac{1}{\Delta t} \int_{t^{n}}^{t^{n+1}} f\left(u\left(x_{i+1 / 2}, t\right)\right) d t$$
and $$\lambda=\frac{\Delta t}{\Delta x}$$
and where $\Delta x=x_{i+1 / 2}-x_{i-1 / 2}$ and $\Delta t=t^{n+1}-t^{n}$. In the above, an overbar indicates spatial cell-integral averages, the hat means time-integtral averages
So yeah.. I am slightly convinced, given the long-windedness of the notation above, that I have complicated my task by asking the full question.. instead maybe it should have been more prudent (and sufficient) to merely ask:
about showing the relation
$$\frac{-f\left(u_{i+2}^{n+1}\right)+8 f\left(u_{i+1}^{n+1}\right)-8 f\left(u_{i-1}^{n+1}\right)+f\left(u_{i-2}^{n+1}\right)}{12 \Delta x}=0$$
might hold.. but I am not sure this would alter the problem, so I asked the full question