I'm trying to understand the proof of the convergence of the Broyden method through the book Numerical Methods for Unconstrained Optimization and Nonlinear Equations, and at some point the proof relies on the following lemma (page 77):
Lemma 4.1.15 Let $F$, $J$ satisfy the conditions of Lemma 4.1.12. Then, for any $v, u \in D$,
$||F(v)-F(u)-J(x)(v-u)|| \leq \frac{\gamma}{2}(||v-x||+||u-x||)||v-u||$
For context, $J$ is the Jacobian matrix of $F$ and Lemma 4.1.12 says the following:
Lemma 4.1.12 Let $F:\mathbb{R}^n \rightarrow \mathbb{R}^m$ be continuously differentiable in the open convex set $D \in \mathbb{R}^n, x \in D$, and let $J$ be Lipschitz continuous at $x$ in the neighborhood $D$, using a vector norm and the induced matrix operator norm and the constant $\gamma$. Then, for any $x+p \in D$,
$||F(x+p)-F(x)-J(x)p|| \leq \frac{\gamma}{2}||p||^2$
You can find the proof of $4.1.12$ here, page 13.
Unfortunately, the proof of Lemma 4.1.15 is left as an exercise to the reader and I'm unable to figure it out. By manipulating the initial expression, I can show that
$||F(v)-F(u)-J(x)(v-u)|| \leq \frac{\gamma}{2}(||v-x||^2+||u-x||^2)$
but this is not the required inequality.
Any hints?