Integral curves are a very powerful conceptual tool. However, they are usually very hard to calculate and most examples are beyond the scope of this course. However, there will be a few I can attempt. I’ll describe the general process in \(\RR^3\text{.}\)
If \(F = (F_1,F_2,F_3)\) is a vector field and \(\gamma(t) =
(\gamma_1, \gamma_2,\gamma_3)\) is a parametric curve, then \(\gamma\) is an integral curve if it satisfies the following system.
\begin{align*}
\gamma_1^\prime(t) \amp = F_1(\gamma_1, \gamma_2, \gamma_3)\\
\gamma_2^\prime(t) \amp = F_2(\gamma_1, \gamma_2, \gamma_3)\\
\gamma_3^\prime(t) \amp = F_3(\gamma_1, \gamma_2, \gamma_3)
\end{align*}
This is a system (generally non-linear) of three differential equations in three functions, the \(\gamma_i\text{.}\) Even if it is linear, this is still a difficult system to solve, if not impossible. Even a simple field such as \(F(x,y,z) = (y,z,x)\) leads to a difficult system.
\begin{align*}
\gamma_1^\prime \amp = \gamma_2\\
\gamma_2^\prime \amp = \gamma_3\\
\gamma_3^\prime \amp = \gamma_1
\end{align*}
Currently, I have no method for approaching this system. (For those who have taken the differential equations course, you may recognize that this is a linear system and that course did cover solving linear systems of differential equation). However, there are some examples with reasonable systems of equations which I will be able to solve with integration.
Let \(F = (x,y,z)\text{.}\) The system that defined the integral curve here is pleasant since each component only related to itself. Let me write the setup.
\begin{align*}
\gamma_1^\prime \amp = \gamma_1 \\
\gamma_2^\prime \amp = \gamma_2 \\
\gamma_3^\prime \amp = \gamma_3
\end{align*}
Each differential equation can be solved directly. These are seperable differential equation, but I can also simply notice that these are the basic exponential equation. Therefore, the solutions must be exponential function. Each exponential function will have an unknown starting value. Here are the solutions.
\begin{align*}
\gamma_1^\prime \amp = \gamma_1 \implies \gamma_1(t) =
ae^t\\
\gamma_2^\prime \amp = \gamma_2 \implies \gamma_2(t) =
be^t\\
\gamma_3^\prime \amp = \gamma_3 \implies \gamma_3(t) =
ce^t
\end{align*}
The values of \(a\text{,}\) \(b\) and \(c\) will be determined by the starting point of the parametric curve. As with all differential equation, initial conditions determine the unknown constant in the solution. This also gives the entire family of integral curves by making all the possible independent choices for these three constants.
Let \(F = (1,2x,3y)\text{.}\) Here is the resulting system of differential equation for the integral curves.
\begin{align*}
\gamma_1^\prime \amp = 1\\
\gamma_2^\prime \amp = 2\gamma_1\\
\gamma_3^\prime \amp = 3\gamma_2
\end{align*}
This system can be solved by iteration. I can solve the first equation by integration. Then the second equation relies on the first component, so I can use the first solution to solve the second by integration again. Finally, the third relies on the second, so I can use the second function and integration to calculate the third.
\begin{align*}
\gamma_1 \amp = \int 1 dt = t + a\\
\gamma_2 \amp = 2 \int \gamma_1 dt = \int 2t + 2a dt = t^2
+ 2at + 2b\\
\gamma_3 \amp = 3 \int \gamma_2 dt = 3\int t^2 + 2at + 2b
dt = t^3 + 3at^2 + 6bt + 3c\\
\gamma(t) \amp = (t+a, t^2 + 2ta + b, t^3 + 3at^2 + 6bt +
3c)
\end{align*}