托马斯微积分什么时候学_普林斯顿微积分好在哪

托马斯微积分什么时候学_普林斯顿微积分好在哪托马斯微积分和微积分学教程Samewithlinearalgebra,calculusisalsocloselyrelatedtoprogramming.与线性代数一样,微积分也与编程紧密相关。Youmightknowthefirsttwocoursesinthefirstgradeofcomputerscienceandengineerin…

大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。

Jetbrains全家桶1年46,售后保障稳定

托马斯微积分和微积分学教程

Same with linear algebra, calculus is also closely related to programming.

与线性代数一样,微积分也与编程紧密相关。

You might know the first two courses in the first grade of computer science and engineering (I don’t even mention the rest of the departments). You’d wonder how well they work out in real scenarios. Here, we’ll break out why calculus is important in programming. Here are the details.

您可能知道计算机科学与工程专业一年级的前两门课程(我什至没有提及其他部门)。 您想知道它们在实际场景中的效果如何。 在这里,我们将探讨微积分为什么在编程中很重要。 这是详细信息。

该算法的逻辑取决于一个数学主题 (The algorithm’s logic depends on one mathematical topic)

Image for post

And it’s the functions in calculus. It might seem odd when you learn calculus in the first year and you might be asking why. I asked the same question and after starting to learn calculus while paying attention to the topics by Khan Academy. And then I realized that they’re simply basic mathematics that would pave the way to understand computer science and programming.

这是微积分中的功能。 当您在第一年学习微积分时,您可能会问为什么,这似乎很奇怪。 我问了同样的问题,并且在开始学习微积分的同时关注可汗学院的主题。 然后我意识到它们只是基础数学,可以为理解计算机科学和编程铺平道路

Even more, I realized as I was learning computer science that the logic of the algorithm is highly dependent on the topic of functions as an algorithm is the steps of solving a problem by design. As there are a problem and a solution to a problem (algorithm), functions are coming into hand even though there are lots of solutions in your domain, you can only choose one from the set of solutions (g(x)) for your problem (f(x)).

甚至在我学习计算机科学时,我意识到算法的逻辑高度依赖于函数的主题,因为算法是通过设计解决问题的步骤。 由于存在一个问题和一个问题的解决方案(算法),即使您的域中有很多解决方案,函数也将投入使用,因此您只能从问题的解决方案集(g(x))中选择一个(f(x))。

为统计编程提供基础 (Provides bases for a statistical programming)

Image for post

Especially if you start to learn data science, probability, and artificial intelligence. It might not be needed in the first place as you study the basics of statistics but when you come into the topic of probability and advancing further into statistics where you need every piece of math available to solve your problems. Moreover, topics like linear algebra, differential equations, and multivariate calculus require a full understanding of calculus.

特别是如果您开始学习数据科学,概率和人工智能。 在学习统计学的基础知识时,一开始可能不需要它,但是当您进入概率主题并进一步发展到统计学时,则需要使用所有可用的数学知识来解决问题。 此外,诸如线性代数,微分方程和多元微积分之类的主题需要对微积分有充分的了解。

为数学编程提供基础 (Provides bases for mathematical programming)

Image for post

Same with statistical programming. They all require calculus as they’re built upon the foundations of each topic in calculus especially derivatives and integrals. And the topics build up each other and are used frequently in different topics in mathematics and programming to build up complex systems, teaching, creating projects with high value to improve other people’s lives.

与统计编程相同。 它们都需要微积分,因为它们建立在微积分中每个主题的基础上,尤其是导数和积分。 各个主题之间会相互融合,并在数学和编程中的不同主题中经常使用,以构建复杂的系统,进行教学,并创建具有高价值的项目以改善他人的生活。

生活取决于数学 (Life depends upon mathematics)

It’s not just programming. The whole life systems are built upon mathematics and our very existence depends on maths and we’re becoming ever dependent on math. And the base for any intermediate to advanced mathematics is reliant on calculus. Understanding mathematics and the life systems derive from calculus were mechanics, chemistry, and other systems for our understanding.

不只是编程。 整个生命系统都是建立在数学基础上的 ,我们的生存依赖于数学,而我们越来越依赖于数学。 而且,任何中高级数学的基础都取决于微积分。 从微积分中得出的数学和生命系统的理解是力学,化学和其他用于我们理解的系统。

According to you, why calculus is important for programming? Share your thoughts and experiences in the comments section below.

根据您的说法,微积分为什么对编程很重要? 在下面的评论部分中分享您的想法和经验。

翻译自: https://medium.com/dev-genius/why-calculus-is-important-e71a12f85213

托马斯微积分和微积分学教程

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。

发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/210005.html原文链接:https://javaforall.net

(0)
全栈程序员-站长的头像全栈程序员-站长


相关推荐

  • 进程间的7种通信方式_linux 进程间通信

    进程间的7种通信方式_linux 进程间通信1无名管道通信无名管道(pipe):管道是一种半双工的通信方式,数据只能单向流动,而且只能在具有亲缘关系的进程间使用。进程的亲缘关系通常是指父子进程关系。2高级管道通信高级管道(popen):将另一个程序当做一个新的进程在当前程序进程中启动,则它算是当前程序的子进程,这种方式我们成为高级管道方式。3有名管道通信有名管道(namedpipe):有名管道也是半双工的通信方式,但是它允许

    2022年10月11日
    0
  • idea常用快捷键大全_idea的快捷键设置

    idea常用快捷键大全_idea的快捷键设置文章目录一.快速生成main二.快速生成System.out.print三.文件保存四.删除一行五.新添,新建,添加的快捷键六.切换java程序七.目录显示与关闭八.运行九.提示方法的参数十.切换窗口一.快速生成main输入psvm二.快速生成System.out.print使用sout三.文件保存IDEA是自动保存的,不需要我们去Ctrl+S保存。四.删除一行Ctrl+Y五.新添,新建,添加的快捷键Alt+lnsert六.切换java程序

    2022年9月6日
    5
  • 树莓派4b OpenWrt做旁路由

    树莓派4b OpenWrt做旁路由主要分为以下几步:一、下载并刷入OpenWrt固件OpenWrt固件用的是Lean大的最新编译好的固件,按照正常的步骤在GitHub上下载并将二、进入路由器后台修改静态IP及相应的防火墙设置三、连接树莓派的wifi,并手动设置IP…

    2022年5月12日
    53
  • linux shell之文件锁

    linux shell之文件锁

    2022年3月12日
    45
  • TCP/IP三次握手与四次挥手学习笔记(一)「建议收藏」

    TCP/IP三次握手与四次挥手学习笔记(一)

    2022年2月14日
    29
  • Vue.extend详解,自定义toast弹窗

    Vue.extend详解,自定义toast弹窗Vue.extend方法,返回的是一个扩展实例构造器可以理解为组件类的一个构造函数,其属性都为组件内的对应的属性//定义一个组件的构造函数constdivComponent=Vue.extend({ template:`<divv-on:click=”click”>{{text}}</div>`, data(){ return{ text:’helloword’ } }, methods:{ click(){ consol

    2022年9月24日
    0

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注全栈程序员社区公众号