We find in Arnold's Trivium the following problem, numbered 39. (The double integral should have a circle through it, but the command /oiint does not work here.)
Calculate the Gauss integral
$$\int \int \frac{(d\vec A, d\vec B, \vec A-\vec B)}{|\vec A-\vec B|^3},$$
where $\vec A$ runs along the curve $x=\cos \alpha$, $y=\sin \alpha$, $z=0$, and $\vec B$ along the curve $x=2\cos^2 \beta$, $y=(1/2)\sin \beta$, $z=\sin 2\beta$.
First, what exactly is being asked here? We seem to have an inner product in the integral, except there are three arguments. I am not sure what to make of this -- the notation is unfamiliar to me. And I suppose $\alpha$ and $\beta$ both independently run from $0$ to $2\pi$?
Second, how does one solve this?
Update: David H. reports that the three-place function is probably the vector triple product. "More likely it represents the vector triple product. This is the integral one must evaluate to compute the magnetic force between two current-carrying wires." This interpretation makes sense, because these problems are directed physics students.

This is Gauss' Linking Number Formula, for two space curves $\vec{A}, \vec{B}: S^1 \to \mathbb{R}^3$
$$ \textrm{link}(A,B) = \oint_A \oint_B \frac{\vec{A}-\vec{B}}{|\vec{A}-\vec{B}|^3} \cdot (d\vec{A} \times d\vec{B})$$
In our case, $\vec{A}(t) = (\cos t, \sin t, 0)$ and $\vec{B}(t) = ( 1+ \cos 2t, \frac{1}{2}\sin t, \sin 2t)$ . How to picture these two curves:
$\vec{A}(t)$ represents a unit circle in the $xy$ plane centered at the origin $(0,0,0)$.
$\vec{B}(t)$ is harder to visualize but we observe a few things:
Since the Gauss linking number is a topological invariant, we can deform the circle $\vec{A}$ to a the straight line $\{(1,t,0): t \in \mathbb{R}\} $ (or alternatively deform $\vec{B}$ to the double-circle $\vec{B}(t) = ( 1+ \cos 2t, \frac{1}{2}\sin t, \sin 2t)$) and then it is easy to check the linking number is 2 and the integral is $\color{#F76760}{\mathbf{8\pi}}$
If we were to compute the integral directly, it would seem rather strenuous to use the triple product formula $a \cdot (b \times c)$ directly and wade through all the integrals. Instead I would introduce the family of circles:
$$ \vec{A}(s,t) = (s\cos t - s + 1, s\sin t, 0)\text{ with } s\to \infty$$
or instead $\vec{B}(s,t) = ( 1+ \cos 2t, \frac{s}{2}\sin t, \sin 2t)$ with $s \to 0$.
CODE Here is the Python script which I used to check the Gauss Linking number formula:
Getting an answer of
-8.0000000011873595$ = \frac{1}{\pi}\int \dots$