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
0
votes
1 answer

How to find $y'''_{ttt}$?

Let us have function $y(x)$ and $x = \varphi(t)$. Then parametric derivative should be: $$y'_x = \dfrac{y'_t}{x'_t}.$$ The parametric derivative of the second order should be: $$y''_{xx} = (y'_x)'_x = \dfrac{(y'_x)'_t}{x'_t} =…
Andrew
  • 41
0
votes
0 answers

Calculating the error gradient

In Table 5 normalized house price is provided. A machine learning algorithm is trained on the House size for predicting the House price. The predicted price can be expressed by the equation $Yp=a+bX$. The sum of squared error $(SSE)$ can be…
zellez11
  • 287
0
votes
0 answers

maximum value (derivative)

I am trying to differentiate: $\frac{dz}{dw} = \frac{d}{dw} \frac{wc}{R^{-2} + w^2c^2} = \frac{d}{dw} (wc)(R^{-2} + w^2c^2)^{-1} = \frac{C}{R^{-2} w^2c^2} + \frac{-2wc^2}{R^{-2} + w^2 c^2}$ Now to find the maximum value of $z$ I need to set the…
user307640
  • 2,632
  • 2
  • 17
  • 27
0
votes
0 answers

High order derivatives for cross product function

Define the cross product function $F: \mathbb{R}^{3} \times \mathbb{R}^{3} \rightarrow \mathbb{R}^{3}$ by $F(v, w)=v \times w$. The question is to prove that $F$ is differentiable and find its derivative. Is the existence of Jacobian matrix enough…
Rita
  • 23
0
votes
1 answer

Reverse a derivative

This is from reading a book on probabilities. How is (3) developed? The text reads: From $$(+Δ)−()=−()()Δ\tag{1}$$ We take limits $$\frac{()}{}=−()()\tag{2}$$ Thus we have $$()=^{−\int_0^t\lambda(\tau)(\tau)}\tag{3}$$
Steve
  • 115
0
votes
1 answer

Solve for a in hyperbolic decline equation

I am studying a system where the velocity declines with time. The velocity change with time is well represented by hyperbolic decline equations of the form: $$v = q_0\left(1+\frac{bt}{a}\right)^{-\dfrac 1b}$$ where v is the velocity and t is time. …
rdemyan
  • 97
0
votes
1 answer

How quadratic drag is incorporated into trajectory equation

Given the following trajectory equation with gravitational force $\left(F_G\right)$ and drag force $\left(F_D\right)$: $$m a = F_G + F_D = m g \hat{y} - b \left( \hat{x} + \hat{y} \right)$$ and letting $k=\frac{b}{m}$ you can seperate the above…
0
votes
1 answer

Question about an introductory limits proof in beginning calculus

A proof offered for the derivative of a constant is shown here: https://tutorial.math.lamar.edu/classes/calci/DerivativeProofs.aspx My question is: why is it "permitted" to indicate: $$\lim_{h\to0} [f(x+h)] = c$$ It seems like a step is being…
0
votes
0 answers

relationship between $\operatorname{diff}(f)$ and $d(f)$

I have a series $x$ and a function $f(x)$ and I need to calculate the scalar differences $\operatorname{diff}(f(x))$. Having both $x$ and the function $f$ available, I can simply replace $x$ in $f$ and obtain the data I need. But wanting to use the…
0
votes
0 answers

Computation of derivative involving a minimum

Consider the function $F:\mathbb{R}\rightarrow \mathbb{R}$. Let $f(x)$ denote the derivative of $F$ at $x\in \mathbb{R}$. Consider two other differentiable functions $g:\mathbb{R}\rightarrow \mathbb{R}$ and $b:\mathbb{R}\rightarrow…
Star
  • 222
0
votes
1 answer

What does it mean to say something is twice Fréchet differentiable?

The definition is from this book https://link.springer.com/content/pdf/10.1007/978-0-387-68407-9.pdf?pdf=button Fréchet derivatives in this book are just the usual higher dimension derivatives so I don’t write the definition here Definition 1.20.…
Tom
  • 414
0
votes
2 answers

Relation between slope of a function and its derivative

What is the relation between the slope of a function and the derivative of that function? I was introduced to the idea of derivatives, which is basically the the concept of rise and run, the increase in value of the function in y axis over the…
0
votes
2 answers

Derivative problem

Could anyone help me? Let $f:[0,1] \to \mathbb{R}$ be a function of class $C^1$ such that $f(0)=0$ and there exists $a \in ]0,1[$ with $f(a)f’(a)<0$. Show that there exists $b\in ]0,1[$ with $f’(b)=0$ I don't understand: how is different between…
0
votes
1 answer

Partial derivatives of matrix products

$A(s)$: Matrix whose each component is a function of s. $B(t)$: Matrix whose each component is a function of t. $A(0)=B(0)=1$. ${\frac{\partial}{\partial s}}|_{s=0}{\frac{\partial}{\partial…
0
votes
0 answers

Solving the second derivative of this equation

So I have the equation $$\tan^2 \theta = \frac{x^2+y^2}{z^2}$$ I got the first derivative of $\theta$ with respect to $x$ by doing this \begin{align} 2\sec^2 \theta \tan \theta d \theta &= \frac{2x}{z^2} dx \\ \frac{d \theta}{dx} &= \frac{x \cos^3…