如何计算一个函数的基本导数(calculate a basic derivative of a function)

本指南旨在帮助那些在一般非数学课程(如经济学)中必须偶尔计算导数的人,也可以作为刚开始学习微积分的人的指南。本指南是为那些已经熟悉代数的人准备的。注意:本指南中使用的导数的符号是'符号,*用于乘法,^表示指数。...

第1部分 2的第1部分:从基础知识开始

  1. 1知道导数是对一个函数的变化率的计算。例如,如果你有一个描述汽车从A点到B点的速度的函数,它的导数将告诉你汽车从A点到B点的加速度--汽车速度变化的快或慢。
  2. Image titled Calculate a Basic Derivative of a Function Step 1
  3. 2简化函数。不简化的函数仍然会产生相同的导数,但它可能更难计算。简化的例子方程:(6x + 8x)/2 +17x +4(14x)/2 + 17x + 47x + 17x + 424x + 4
  4. Image titled Calculate a Basic Derivative of a Function Step 2
  5. 3识别函数的形式。学习各种形式。只是一个数字(如4)一个数字乘以一个没有指数的变量(如4x)一个数字乘以一个有指数的变量(如4x^2)加法(如4x + 4)变量的乘法(如x*x的形式)变量的除法(如x/x的形式)
  6. Image titled Calculate a Basic Derivative of a Function Step 3

第2部分第2部分:寻找不同形式的衍生物

  1. 1A数。这种形式的函数的导数总是零。这是因为函数没有变化--函数的值将永远是你所给的数字。下面是一些例子:(4)' = 0(-234059)' = 0(π)' = 0
  2. Image titled Calculate a Basic Derivative of a Function Step 4
  3. 2A数字乘以一个没有指数的变量。这种形式的函数的导数总是数字。如果x没有指数,那么这个函数是以恒定的、稳定的、不变的速度增长。你可能从线性方程y=mx+b中认识到这个技巧。
  4. Image titled Calculate a Basic Derivative of a Function Step 5
  5. 3A数乘以一个带有指数的变量。从指数中减去1。用数字乘以指数的值。例如:(4x^3)' = (4*3)(x^(3-1)) = 12x^2(2x^7) ' = 14x^6(3x^(-1)) ' = -3x^(-2)
  6. Image titled Calculate a Basic Derivative of a Function Step 6
  7. 4加法。分别对表达式的每一部分进行导数。例如:(4x + 4)' = 4 + 0 = 4((x^2) + 7x)' = 2x + 7
  8. Image titled Calculate a Basic Derivative of a Function Step 7
  9. 5变量的乘法。第一个变量乘以第二个变量的导数。第二个变量乘以第一个变量的导数。把你的两个结果加在一起。下面是一个例子:((x^2)*x)' = (x^2)*1 + x*2x = (x^2) + 2x*x = 3x^2
  10. Image titled Calculate a Basic Derivative of a Function Step 8
  11. 6变量的除法。底层变量乘以高层变量的导数。上层变量乘以下层变量的导数。用步骤1的结果减去步骤2的结果。请注意,顺序很重要。用底部变量的平方除以步骤3中的结果。看看这个例子:((x^7)/x)' = (7x^6*x - 1*x^7)/(x^2) = (7x^7 - x^7)/(x^2) = 6x^7/x^2 = 6x^5这也许是最难做到的技巧,但非常值得努力。确保按顺序进行,并按正确的顺序进行减法,这就会很顺利。
  12. Image titled Calculate a Basic Derivative of a Function Step 9
  • 本指南旨在为人们提供计算基本函数的导数所需的工具。如果想深入了解导数或更高级的微分形式,如连锁法则或偏微分,建议查阅James Stewart的《微积分:早期超越》一书。建议参考詹姆斯-斯图尔特的《微积分:早期超越》。
  • 发表于 2022-03-11 16:20
  • 阅读 ( 120 )
  • 分类:教育

你可能感兴趣的文章

导数(derivative)和有差别的(differential)的区别

...偏导数是一类特殊的方向导数。 Derivative of a vector-valued function f can be defined as the limit wherever it exists finitely. As mentioned before, this gives us the rate of increase of the function f along the direction of the vector u. In the case of a single-valued function, this r...

  • 发布于 2020-10-25 13:25
  • 阅读 ( 609 )

区别(differentiation)和导数(derivative)的区别

...偏导数是一类特殊的方向导数。 Derivative of a vector-valued function f can be defined as the limit wherever it exists finitely. As mentioned before, this gives us the rate of increase of the function f along the direction of the vector u. In the case of a single-valued function, this r...

  • 发布于 2020-10-26 13:11
  • 阅读 ( 629 )

如何使用click在python中创建自己的命令行程序

... import sysimport randomdef do_work():""" Function to handle command line usage"""args = sys.argvargs = args[1:] # First element of args is the file nameif len(args) == 0:print('You have not passed any commands in!')else:for a in args:if a == '--help':print('Basic co...

  • 发布于 2021-03-23 13:56
  • 阅读 ( 281 )

什么是递归?如何使用它?

... 什么是递归函数(a recursive function)? ...

  • 发布于 2021-03-29 05:32
  • 阅读 ( 235 )

在运行vba函数时,如何限制microsoft excel的cpu使用率?

...? 答案 超级用户贡献者mtone为我们提供了答案: If a VBA function is called from several formulas or if your script generates or forces the recalculation of several formulas, then this should definitely make use of the multi-threaded calculation feature in Microsoft Excel. Respectiv...

  • 发布于 2021-04-10 01:03
  • 阅读 ( 283 )

功能(function)和程序(procedure)的区别

功能与程序 计算机编程是软件开发过程的一个阶段。它被认为是一门手艺、一门艺术和一门工程学科,可以为计算机用户遇到的问题创建一个有用的软件解决方案。在编写计算机程序时,程序员使用一种程序设计语言。程序设...

  • 发布于 2021-06-23 15:49
  • 阅读 ( 264 )

有差别的(differential)和导数(derivative)的区别

...包含导数,而导数实际上指定了一个量相对于另一个量是如何变化的。通过解一个微分方程,你得到一个不含导数的量的公式。计算导数的方法叫做微分法。简单地说,函数的导数是输出值相对于输入值的变化率,而微分是函数...

  • 发布于 2021-06-25 20:02
  • 阅读 ( 456 )

如何求二次函数的对称轴(find the axis of symmetry of a quadratic function)

什么是二次函数(a quadratic function)? 二次多项式函数称为二次函数。形式上,f(x)=ax2+bx+c是一个二次函数,其中a、b和c是实常数,a≠x的所有值均为0。二次函数的图形是抛物线。 如何求二次函数的对称轴 任何二次函数...

  • 发布于 2021-06-27 00:49
  • 阅读 ( 821 )

如何计算已完成工时(calculate work done)

...移为1m,则功为1焦耳。 If the force is not c***tant but rather a function of position , then the work done by the force to move the object from a position to another position is given by, So if a force vs. distance graph is drawn, the work done to move the object from to is equal t...

  • 发布于 2021-06-27 03:19
  • 阅读 ( 135 )

有差别的(differential)和导数(derivative)的区别

...。微分表示像物体面积一样可变的量的最小差别。它可以计算方程中自变量和因变量之间的关系。比较参数差异衍生品定义微分表示变量量的最小差异。导数表示微分方程中变量的变化率。计算的差异计算线性差。图在特定点的...

  • 发布于 2021-07-11 13:54
  • 阅读 ( 1498 )
jvvf73159
jvvf73159

0 篇文章

相关推荐