I'm solving a physics question, and i just encountered some question i had no idea how to start, i just got the right answer and inside it it has something in math i never thought possible,
I know that the integral of $a$ (acceleration) by $t$ (time) will give me $v$ (velocity), I also know that the integral of $v$ by $t$ will give me $r$ or $x$ (the movement vector). I know that the derivative of $x$ will give me $v$, and the derivative of $v$ will give me $a$.
I just saw these few lines:

I somehow understand that you can replace $a$ with dv/dt because it's basically the same, but i have no idea how you can multiply the dt in the left sector of the equation, what does it mean?
I always thought that dx is basically saying 'Derivative by x' i never thought it's something "real" you can actually multiply and use basic math with...
Hope you could give me some idea about it, thanks!
In other answer i found this as the answer to "What does $dx$ mean?":
$dx$ does not mean anything. It's just a syntactical device to tell you the variable to differentiate with respect to or the integration variable.
This is exactly why i'm asking, because how can you multiply $dx$ in another thing if it's only a syntactical device?
$dx$ is called a differential. The notation is due to Leibniz and while the original meaning might have changed from being an infinitesimal quantity to a modern style differential, one still keeps the notation just because it allows to do some basic math on the differentials (like you wrote) and get reasonable results. Like the chain rule $$ \frac{df}{dx} = \frac{df}{du} \frac{du}{dx} $$ which you could write as $$ df = \frac{df}{du} \, du $$ and use it e.g. for solving an integral with substituion of variables $u = x^2$, $du = 2 x \, du$: $$ \int\limits_a^b x^2 dx = \int\limits_{a^2}^{b^2} u \frac{du}{2\sqrt{u}} = \frac{1}{2} \int\limits_{a^2}^{b^2} \sqrt{u} \, du $$ Or the total differential $$ df = \frac{\partial f}{\partial x} dx + \frac{\partial f}{\partial y} dy + \frac{\partial f}{\partial z} dz $$ Or the arc length of a curve in the $x$-$y$-plane: \begin{align} ds^2 &= dx^2 + dy^2 \Rightarrow \\ L &= \int\limits_1^2 ds \\ &= \int\limits_{x_1}^{x_2} \frac{ds}{dx} \, dx \\ &= \int\limits_{x_1}^{x_2} \frac{\sqrt{dx^2 + dy^2}}{dx} \, dx \\ &= \int\limits_{x_1}^{x_2} \sqrt{1 + \left(\frac{dy}{dx}\right)^2} \, dx \\ \end{align} In that sense the differentials and the rules used to manipulate differentials form a "Kalkül", a way to compute results. (I have only a German reference for this: link).