jQuery -> 获取/设置/删除DOM元素的属性
Sum square difference
Problem 6
The sum of the squares of the first ten natural numbers is,
The square of the sum of the first ten natural numbers is,
Hence the difference between the sum of the squares of the first ten natural numbers and the square of the sum is 3025 385 = 2640.
Find the difference between the sum of the squares of the first one hundred natural numbers and the square of the sum.
补充两个公式
证明:倒序相加,
证明:数学归纳法
这都是高中的题目
给出我的python代码:
n = 100 s1 = n*(n+1)/2 # sum of (1..n)1+2+....+n s2 = n*(n+1)*(2*n+1)/6 # sum of (1+2**2+3**2+...n**2) print s1**2-s2
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。