Chapter(2) -- Limits 极限

1. 曲线的切线问题和速度问题

某一个点的切线是在这个点的基础上,一条与曲线相切的线,同时,切线的方向应该和曲线的方向是一致的。但是如果这条“切线”和曲线有了不止一个的切点。这个问题就不能这样考虑了。

因此,我们可以利用极限或者无限接近极限的思路来考虑这个问题。

2. 函数的极限

ƒ(x)的极限,随着x趋近于a,等于L

The left-hand/right-hand limit of ƒ(x) as x approaches a equals L;

The limit of ƒ(x) as x approaches a from the left/right is equal to L.

如果左极限和右极限不同的时候,该函数的极限是不存在的。

如果x趋近于a,函数的极限为无穷大。这里的∞并不是在表达数字或者任何数学的意义,它同样也是在说明该函数的极限是不存在的,只不过是换了一种说法而已。

3. 如何用极限的运算法则来计算极限

lim[ƒ(x) + g(x)] = limƒ(x) + limg(x)

lim[ƒ(x) – g(x)] = limƒ(x) – limg(x)

lim[C*ƒ(x)] = C*limƒ(x)

lim[(ƒ(x)*g(x)] = limƒ(x)*limg(x)

lim[ƒ(x)/g(x)] = limƒ(x)/limg(x) if limg(x)≠0

lim[ƒ(x)]n = [limƒ(x)]n

4. 连续

The limit of a function as x approaches a can often be found simply by calculating the value of the function at a. Functions with this property are called continuous at a. Notice that definition implicitly requires three things if ƒ is continuous at a:

1. ƒ(a) is defined.

2. limƒ(x) is existed.

3. limƒ(x) = ƒ(a)

A continuous function ƒ has the property that a samll change in x produces only a samll change in ƒ(x). 一个连续的函数,当自变量x的有很小的变化的时候,因变量y也会相对应地产生很小的变化。

除此之外,我们都说这个函数是个不连续的函数。We say that ƒ is discontinuout at a.

定理1:

If ƒ and g are continuous at a and c is constant, then the following functions are also continuout at a:

ƒ+g;

ƒ–g;

cƒ;

ƒ*g

ƒ/g

定理2:

Any polynomial is continuous everywhere, that is, it is continuous on (-∞, +∞).

Any rational function is continuous wherever it is defined, that is, it is continuous on its domain.

定理3:

The polynomial/rational functions/root functions/trigonometric functions are continuous at every number in their domain.

多项式,除函数,平方根函数和三角函数在他们定义域上的每一个值上都是连续的。

定理4:

If ƒ is continuous at b and limx→ag(x)=b, then limx→aƒ(g(x)) = ƒ(b), that is:

limx→aƒ(g(x)) = ƒ(limx→a g(x))

定理5:

If g is continuous at a and ƒ is continuous at g(a), then the composite function ƒ°g given by (ƒºg)(x) is continuous at a.

The Intermediate value theorem:

Suppose that ƒ is continuous on the closed interval [a,b] and let N be any number between ƒ(a) and ƒ(b), where ƒ(a)≠ƒ(b). Then there exists a number c in (a,b) such that ƒ(c) = N. Note that value N can be taken on once or more than once.

连续性函数就是X-Y轴上连续的,没有洞的函数。X轴上的一个点c,一定会对应Y轴上一个或多个的ƒ(c)的。

时间: 2024-12-08 18:05:16

Chapter(2) -- Limits 极限的相关文章

Android Programming: Pushing the Limits -- Chapter 7:Android IPC -- Messenger

Messenger类实际是对Aidl方式的一层封装.本文只是对如何在Service中使用Messenger类实现与客户端的通信进行讲解,对Messenger的底层不做说明.阅读Android Programming: Pushing the Limits -- Chapter 7:Android IPC -- AIDL了解如何使用Aidl的方式实现服务端与客户端的通信. 在Service中使用Messenger,大部分代码还是跟Android的消息机制打交道,具体一点就是跟Handler,Mes

Android Programming: Pushing the Limits -- Chapter 7:Android IPC -- ApiWrapper

前面两片文章讲解了通过AIDL和Messenger两种方式实现Android IPC.而本文所讲的并不是第三种IPC方式,而是对前面两种方式进行封装,这样我们就不用直接把Aidl文件,java文件拷贝到客户端了,而是为客户端提供一个aar(Anroid Archive)包.通过这个aar包对AIDL或者Messenger进行封装,最终客户端就可以像调用一般的java类一样,而不用处理通信方面的内容.(实际上书中说是要打包成jar包,但是在新建的Java Library Module中,我没能成功

极限和连续 limits + Continue

上一节我们将导数定义为切线的斜率,这是一种几何解释.我们求出了1/x的斜率为 -1/x2 求出了 f(x) = xn 的斜率是 f"(x) = n*xn-1  这些几何的推导都是根据y-y0  = k * ( x - x0 ).得来的. 这一节我们重新审视 何是导数?我们将导数定义为变化率. 当做图  y = f(x)的时候我们可以从变化率的角度而言记录x以及y的变化.也就是记录了平均相对变化率 => Δx/Δy,这是一种平均变化. 通常我们可以将x当成时间,这时候y就可以当成另一种变化量

Android Programming: Pushing the Limits -- Chapter 3: Components, Manifests, and Resources

Android Components Manifest文件 Resource and Assets v\:* {behavior:url(#default#VML);} o\:* {behavior:url(#default#VML);} w\:* {behavior:url(#default#VML);} .shape {behavior:url(#default#VML);} Normal 0 false 7.8 磅 0 2 false false false EN-US ZH-CN X-N

Android Programming: Pushing the Limits -- Chapter 2: Efficient Java Code for Android

Android's Dalvik Java 与 Java SE 进行比较 Java代码优化 内存管理与分配 Android的多线程操作 Android’s Dalvik Java 与 Java SE 进行比较: @.Dalvik虚拟机是register-based machine:Java SE虚拟机是stack machine. @.从Android 2.2 版本开始引进JIT(Just In Time)编译器,之前是纯解释器. @.Android SDK 使用dx这个工具把Java SE s

Android Programming: Pushing the Limits -- Chapter 1: Fine-Tuning Your Development Environment

ADB命令 Application Exerciser Monkey Gradle ProGuard 代码重用 版本控制 静态代码分析 代码重构 开发者模式   ADB命令: @.adb help:查看adb命令. @.adb devices:列出所有连接的安卓设备和模拟器. @.adb push <local> <remote> 把计算机里的文件拷贝到设备中. adb push e:\test.xml /sdcard/files.ldb/ @.adb pull <remot

Android Programming: Pushing the Limits -- Chapter 7:Android IPC -- AIDL

服务端: 最终项目结构: 这个项目中,我们将用到自定义类CustomData作为服务端与客户端传递的数据. Step 1:创建CustomData类 package com.ldb.android.example.aidl; import android.os.Parcel; import android.os.Parcelable; import android.util.Log; import java.util.ArrayList; import java.util.Date; impor

Android Programming: Pushing the Limits -- Chapter 6: Services and Background Tasks

什么时候使用Service 服务类型 开启服务 后台运行 服务通信 附加资源 什么时候使用Service: @.任何与用户界面无关的操作,可移到后台线程,然后由一个Service来控制这个线程. 服务类型: @.First is the one that performs work for the application independent of the user’s input. 如:后台执行的音乐播放器. @.The other type of Service is one that’s

Android Programming: Pushing the Limits -- Chapter 4: Android User Experience and Interface Design

User Stories Android UI Design 附加资源 User Stories: @.通过写故事来设计应用. @.每个故事只关注一件事. @.不同的故事可能使用相同的组件,因此尽早地对故事进行分类. @.把目标用户构想到故事里,描述他们的基本特征,会在什么时候.什么地点使用该应用等信息,因此来确定故事的优先级. Android UI Design: @.构思应用需要展示的界面及内容,不需要详细的界面设计. @.确定各界面的跳转关系. @.用户界面原型设计,可通过工具进行,比如A