Questions tagged [derivatives]

Questions on the evaluation of derivatives or problems involving derivatives (for example, use of the mean value theorem).

The derivative of a function of a real variable measures the sensitivity to change of the function value (output value) with respect to a change in its argument (input value)

Derivative of a function has a very natural geometric and physical interpretation: it corresponds to slope of the tangent line and to instantaneous velocity. In applications, it usually describes the rate of change of a physical variable.

Basic techniques used for computing the derivative of a given function are

It is useful to know the derivatives of elementary functions. This tag is intended for questions on the evaluation of derivatives.

Derivatives may be generalized to functions of several real variables. In this generalization, the derivative is reinterpreted as a linear transformation whose graph is (after an appropriate translation) the best linear approximation to the graph of the original function. The Jacobian matrix is the matrix that represents this linear transformation with respect to the basis given by the choice of independent and dependent variables. It can be calculated in terms of the partial derivatives with respect to the independent variables. For a real-valued function of several variables, the Jacobian matrix reduces to the gradient vector.

33197 questions
2
votes
1 answer

Derivative with multiplication and division

So I have the following homework. I don't want the answer, only point me in the right direction please. Thanks. I'm stuck in the product rule. Do I apply the product rule twice or just one time after applying the quotient…
2
votes
2 answers

How to take the derivative of the following expression

I am taking macro course this Fall and my calculus is quite rusty. So in the lecture notes they derive the…
2
votes
2 answers

What is the theoretical mathematical justification for differential arithmetic?

Throughout undergraduate physics textbooks, you will see informal math with differentials where elements like $dx$ and $dy$ are multiplied around like scalar constants, and differentiation in terms of a variable is treated as analogous to division.…
2
votes
2 answers

Finding n-th derivative

How can I find the n-th derivative of $\frac{1}{x(x+1)}$ ? I tried expressing it as such, but I'm not sure about it. $\frac{1}{x(x+1)} = \frac{1}{x}-\frac{1}{x+1}$ edit: I think I found it, can anyone confirm? Let $f_n$ be the n-th derivative of…
nginx9101
  • 77
  • 7
2
votes
1 answer

At which points is this complex function differentiable

I'm making an exercise about the derivative. I needed to prove that $f(x)=|x|$ isn't differentiable at zero. Now I was wondering if we had a function $f:\mathbb{C} \to \mathbb{C} :z \to |z|$ so a complex function, in which points is this $f$…
questmath
  • 875
  • 5
  • 11
2
votes
1 answer

Differentiate $\mathrm{e}^{x\arctan\left(x\right)}$

I was trying to differentiate the question and I did it in the following 2 ways: METHOD $1:$ Using the cain rule, we get,…
Asv
  • 500
2
votes
1 answer

Conceptual meaning of a differential

When we find the derivative of $z^2$ with respect to $z$ it means the slope of the graph,Which comes out to be $2z$. $$ \frac{dz^2}{dz}=2z $$if we take $dz$ on the other side it becomes $dz^2=2zdz$ which is known as the differnetial of $z^2$. I am…
Naruto
  • 113
2
votes
2 answers

Math question partial derivatives help?

I have the functions : $u=\arctan(xyz)$ where $x=\cos(t)\quad y=e^t$ and $z=1/t$. I have to find $\dfrac{du}{dt}$. My attempt to a solution : $\dfrac{du}{dt}=\dfrac{\partial u}{\partial x}\dfrac{dx}{dt} + \dfrac{\partial u}{\partial…
eeee
  • 49
2
votes
0 answers

Information Bottleneck - Proof of Algorithm

In the Information Bottleneck (IB) paper (https://arxiv.org/pdf/physics/0004057.pdf). Using lagrange multipliers we need to solve $\frac{\delta F}{\delta p(\tilde{x}|x)}=0$, where $F = I(X;\tilde{X})+\beta d(x,\tilde{x})$. By substituting…
Mah
  • 21
2
votes
2 answers

Differentiation using product rule?

I'm stuck on differentiating this: $$f(x) = \frac{4\sin(2x)}{e^\sqrt{2x-1}}$$ I thought about using the product rule here, but when I do that I get an expression that is hard to simplify, and I need to solve for when $f(x) = 0$. Is there a simpler…
2
votes
2 answers

How to find the derivative of $\sqrt{x+2} -x$ using limit definition?

So the function is $f(x) = \sqrt{x+2} -x$, and I keep hitting dead ends trying to solve it using the definition of derivative. If anyone can help, it would be greatly appreciated!
ahhh
  • 37
2
votes
0 answers

Derivative of RBF kernel

Assume that I have a one-dimensional radial basis kernel function $k(x,x')$ with $x,x' \in \mathbb{R}$: $$k(x,x') = exp\left(-\frac{(x-x')^2}{2h^2}\right)$$ where $h^2$ is the bandwidth, assumed a constant. I want to find the derivative of this…
J.Galt
  • 961
2
votes
2 answers

Is this Function Differentiable? $f(x) = \begin{cases} x^2-4x+5, & \text{if } x\neq 0\\ 3x+5, & \text{if } x=0 \end{cases}$

$$f(x) = \begin{cases} x^2-4x+5, & \text{if $x\neq0$ } \\ 3x+5, & \text{if $x=0$ } \end{cases}$$ Can we Present this function as a Differentiable Function whose Derivate Function is Not Continues? I Suppose the Derivate Function would be: $$f'(x) =…
2
votes
2 answers

How to finish the derivative calculation?

I know that this can be calculated as: $x^n=n \cdot x^{n-1}$ but I need to find a solution as a limit: $f(x)=\sqrt[3]{x} ;f^{'}(x)=\lim _{\Delta x\to 0}\frac{\sqrt[3]{x_0+\Delta x} -\sqrt[3]{x_0}}{\Delta x}=\lim _{\Delta x\to…
Andrew
  • 61
  • 6
2
votes
2 answers

How can I find the smoothest transition between two straight lines?

Let's say I have the function $$f(x)=\begin{Bmatrix} x & \textrm{,} & \textrm{if } x\leqslant 1.5\\ \frac{x}{3}+1 & \textrm{,} & \textrm{otherwise} \end{Bmatrix}$$ which has a sharp edge at 1.5, i.e. a discontinuity in the first derivative. I would…