answersLogoWhite

0

What is the derivative of xn?

Updated: 4/28/2022
User Avatar

Wiki User

15y ago

Best Answer

If you're taking the derivative in terms of x, it's n.

User Avatar

Wiki User

15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the derivative of xn?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the first derivative of X to the 23 power?

(x23)'=23x22 Generally, (xn)'=n*xn-1


What is newton-raphson formula for finding roots of non linear equations?

The Newton-Raphson method works if the equations are differentiable over the domain. Let f(x) be the non-linear equation and f'(x) by its derivative [with respect to x]. Start with a reasonable guess at the answer, x0. Then calculate the sequence xn+1 = xn - f(xn)/f'(xn) for n = 0, 1, 2, … The N-R method should converge to a root.


Sum of series 1 plus x2 plus x4.....plus xn?

(xn+2-1)/(x2-1)ExplanationLet Y=1+x2+x4+...+xn. Now notice that:Y=1+x2+x4+...+xn=x2(1+x2+x4+...+xn-2)+1Y+xn+2=x2(1+x2+x4+...+xn-2+xn)+1Y+xn+2=x2*Y+1Y+xn+2-x2*Y=1Y-x2*Y=1-xn+2Y(1-x2)=1-xn+2Y=(1-xn+2)/(1-x2)=(xn+2-1)/(x2-1)


Newtons iteration formula for finding square root of N?

xn+1 = 1/2 ( xn + N/xn )


Can you Factor completely xelevado a n - yelevado a n?

xn- yn=(x - y)(xn-1 + xn-2y +xn-3y2 +. . .+x2yn-3+xyn-2 + yn-1)


How do you differentiate y equal to one third x cubed minus 3x squared plus 8x plus one third?

The derivative of y = 1/3 x3 - 3x2 + 8x + 1/3 is x2 - 6x + 8. You can determine this for yourself by the rules. The derivative of a constant (e.g. 1/3) is 0. The derivative of xn for positive n (actually all nonzero n) is nxn-1. And if the derivative of f(x) is f'(x), then the derivative of k f(x) is k f'(x). Put all these together and you get the above result.


Is compact metric space is complete?

prove that d (x1,xn)<=d (x1,x2)+d (x2,x3)+.................+d (xn-1,xn)


Find X when Y equals Xn?

Y=Xn Y/n=X


What monomial term has the form xn where the coefficient is a and the degree is n?

If by "xn" you mean ax^n then the answer is "a"


What is x to the power of the number that it is divided by?

This is represented as the algebraic expression xn/n or xn ÷ n.


Can you write any simple c program without header file?

Yes you (usually) can, though it may depend on your particular C implementation. // A complete (if useless) C program to compute the square root of 2 and then exit. // No headers required. double sqroot(const double s) { double xn = s / 2.0; double lastX = 0.0; while(xn != lastX) { lastX = xn; xn = (xn + s/xn) / 2.0; } return xn; } int main() { double sqrt2 = sqrt(2); return 0; }


What is the nth term of 87 83 78 72 65?

xn = xn-1 - (n + 2).