Skip to main content

Mastering Mathematics and Computer Science

I am trying to put down a list which will enable one master mathematics (self study).  Initially this is a random list of links, but will be organized subsequently based on skill level.



Mastering Mathematics

1.  Algebra, Algebra 2, AP Statistics, Calculus, Calculus 2, Geometry, Pre-Calculus, Trigonomery
http://www.profrobbob.com/home

UMKC: Richard Delaware
College Algebra: https://www.youtube.com/playlist?list=PLDE28CF08BD313B2A
Calculus 1 - https://www.youtube.com/playlist?list=PLF5E22224459D23D9

2. NPTEL
Core Mathematics 1 (sem 1 and sem 2)
https://www.youtube.com/playlist?list=PL3A87B93CB9912EC1

Mathematics in India (from Vedic Period to Modern times)
https://www.youtube.com/playlist?list=PLbMVogVj5nJThf31TNSQzuN7zqxe7HdRN

Probability and Statistics
https://www.youtube.com/playlist?list=PL6C92B335BD4238AB

Mathematical Logic
https://www.youtube.com/playlist?list=PL2EB5662A0D455A81

Mastering Computer Science

MIT: Mathematics for Computer Science
https://www.youtube.com/playlist?list=PLB7540DEDD482705B

The syllabus and other information can be found at the MIT opencourseware website.
http://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-042j-mathematics-for-computer-science-fall-2010/video-lectures/

NPTEL: Discrete Mathematical Structures
https://www.youtube.com/playlist?list=PL0862D1A947252D20

Comments

Popular posts from this blog

JavaScript Scope

In this blog post we will dig deeper into various aspects of JavaScript scope.  This is a pretty interesting topic  and also a topic which confuses many beginning JavaScript programmers. Understanding JavaScript scope helps you write bug free programs (hmm.. atleast helps your troubleshoot things easily) Scope control the visibility and lifetimes of variables and parameters.  This is important from the perspective of avoiding naming collisions and provides memory management service. Unlike other languages, JavaScript does not have block level scope.  For e.g. take for instance the following piece of c# code. public void Main () { int a = 5; if (true) { int b = 10; } // This will throw compile time error as b is not defined // and not within the scope of function Main(); Console.WriteLine(b); } If you write the same code in JavaScript, then the value of 'b' will be available outside the 'if' block. The reason for this is JavaScript does no

Personal Development : Time, Planning , Repairs & Maintenance

These are just my thoughts, but some you may find something interesting in it. Please think over it. We may know many things, but still we always keeps procrastinating it. I have written this as I have heard many people coming back and saying they don’t have time to do things they like. These are my thoughts buy may be useful to someone else too. Certain things in life needs periodic repairs and maintenance. To cite some examples , your CAR, your HOUSE, your personal laptop/desktop, your health etc. Likewise there are certain other things in professional life that requires repair/ maintenance /or some kind of polishing, so that you always stay on top of it. But they are not always obvious. Some of them are - Improving your communication skills - Increasing your vocabulary - Upgrading your technical skills - Pursuing your hobby - Increasing your knowledge/awareness etc… etc… And then there are certain things that we are always short

JavaScript for Web and Library Developers

This is my first blog post on my home domain and in this series of posts I will explore various facets of JavaScript language that will help us become better programmers.  The idea is tear apart the language and understand how to use the features and build libraries like jquery, knockoutjs, backbonejs. The idea is not to replicate this libraries, but understand the inner workings using better JavaScript coding practices, design principles and thereby make the web a better place to visit.. We will be covering the following topics, though not in order and there may be addition to this list. Foundations Patterns Closure this keyword Hoisting Anonymous function Currying Server side JavaScript Canvas etc. Hope you will enjoy this journey with me!