The author has a course on web: http://brickisland.net/DDGSpring2016/ It has more reading assignments and sliders which are good for you to understand ddg. ------------------------------------------------------------- DISCRETE DIFFERENTIAL GEOMETRY :
著作权归作者所有.商业转载请联系作者获得授权,非商业转载请注明出处.作者:匿名用户链接:http://www.zhihu.com/question/30087053/answer/47815698来源:知乎 Benson Farb:晨兴通俗报告How to do Mathematics文稿(z) 晨兴通俗报告How to do Mathematics文稿(任金波整理,欢迎纠错) 以下是我整理并翻译成汉语的,本人才疏学浅,有些地方实在没听懂,其余部分难免也有很多错误,翻译的汉语对演讲者的意思的传达
Source: wiki: Parseval's theorem As for signal processing, the power within certain frequency band = the sum of (power spectrum at all frequencies within the frequency band)^2.
Stat2.2x Probability(概率)课程由加州大学伯克利分校(University of California, Berkeley)于2014年在edX平台讲授. PDF笔记下载(Academia.edu) Summary Standard Error The standard error of a random variable $X$ is defined by $$SE(X)=\sqrt{E((X-E(X))^2)}$$ $SE$ measures the rough size
Threads are executed in warps of 32, with all threads in the warp executing the same instruction at the same time What happens if different threads in a warp need to do different things?if (x<0.0) z = x-2.0;else z = sqrt(x); This is called warp diver
http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=2119 11178 - Morley's Theorem Time limit: 3.000 seconds Problem DMorley’s TheoremInput: Standard Input Output: Standard Output Morley’s theorem stat
Kullback–Leibler divergence KL散度 In probability theory and information theory, the Kullback–Leibler divergence[1][2][3] (also information divergence,information gain, relative entropy, or KLIC) is a non-symmetric measure of the difference between two
Dirichlet's Theorem on Arithmetic Progressions Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 16733 Accepted: 8427 Description If a and d are relatively prime positive integers, the arithmetic sequence beginning with a and increasing
Kaushik Sathupadi Programmer. Creator. Co-Founder. Dad. See all my projects and blogs → A plain english introduction to CAP Theorem You’ll often hear about the CAP theorem which specifies some kind of an upper limit when designing distributed systems
Problem D Morley's Theorem Input: Standard Input Output: Standard Output Morley's theorem states that that the lines trisecting the angles of an arbitrary plane triangle meet at the vertices of an equilateral triangle. For example in the figure below
Master theorem provides a solution in asymptotic terms to solve time complexity problem of most divide and conquer algorithms. Recurrence relations of the form: T(n) = a T(n/b) + f(n) where a >= 1 and b > 1 Case 1: f(n) = O(nc) where c < logb a T