Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save muupan/e53679bba8b6747c2900d7fd2b676f5a to your computer and use it in GitHub Desktop.
Save muupan/e53679bba8b6747c2900d7fd2b676f5a to your computer and use it in GitHub Desktop.
Download all lecture notes of "Probability Foundations for Electrical Engineers" by Krishna Jagannathan. videos: https://www.youtube.com/playlist?list=PLVhKOwOM3oudtpQG7jf6WrS1GqxTskXsP notes: http://www.ee.iitm.ac.in/~krishnaj/ee5110notes.htm
#!/bin/sh
set -e
# Download all the pdfs
wget -nc http://www.ee.iitm.ac.in/~krishnaj/EE5110_files/notes/lecture1_set_theory.pdf
wget -nc http://www.ee.iitm.ac.in/~krishnaj/EE5110_files/notes/lecture2_Realanalysis.pdf
wget -nc http://www.ee.iitm.ac.in/~krishnaj/EE5110_files/notes/lecture3_cardinality.pdf
wget -nc http://www.ee.iitm.ac.in/~krishnaj/EE5110_files/notes/lecture4_probability_spaces.pdf
wget -nc http://www.ee.iitm.ac.in/~krishnaj/EE5110_files/notes/lecture5_properties%20of%20prob%20measures.pdf
wget -nc http://www.ee.iitm.ac.in/~krishnaj/EE5110_files/notes/lecture6_Discrete%20Probability.pdf
wget -nc http://www.ee.iitm.ac.in/~krishnaj/EE5110_files/notes/lecture7_Borel%20Sets%20and%20Lebesgue%20Measure.pdf
wget -nc http://www.ee.iitm.ac.in/~krishnaj/EE5110_files/notes/lecture8_Infinite%20Coin%20Toss.pdf
wget -nc http://www.ee.iitm.ac.in/~krishnaj/EE5110_files/notes/lecture9_Conditioning_and_Independence.pdf
wget -nc http://www.ee.iitm.ac.in/~krishnaj/EE5110_files/notes/lecture10_bclemma.pdf
wget -nc http://www.ee.iitm.ac.in/~krishnaj/EE5110_files/notes/lecture11_rvs.pdf
wget -nc http://www.ee.iitm.ac.in/~krishnaj/EE5110_files/notes/lecture11_Part_Two_Types_Of_Random_Variables.pdf
wget -nc http://www.ee.iitm.ac.in/~krishnaj/EE5110_files/notes/lecture12_Multiple_Random_Variables_and_Independence.pdf
wget -nc http://www.ee.iitm.ac.in/~krishnaj/EE5110_files/notes/lecture13_Conditional_Distributions_and_Joint_Continuity.pdf
wget -nc http://www.ee.iitm.ac.in/~krishnaj/EE5110_files/notes/lecure14_Introduction_to_Transformation_of_RVs.pdf
wget -nc http://www.ee.iitm.ac.in/~krishnaj/EE5110_files/notes/lecture15_Sums_of_RVs.pdf
wget -nc http://www.ee.iitm.ac.in/~krishnaj/EE5110_files/notes/lecture16_General_transformations_of_RVs.pdf
wget -nc http://www.ee.iitm.ac.in/~krishnaj/EE5110_files/notes/lecture17_Integration_and_Expectation.pdf
wget -nc http://www.ee.iitm.ac.in/~krishnaj/EE5110_files/notes/lecture18_Properties_of_integrals.pdf
wget -nc http://www.ee.iitm.ac.in/~krishnaj/EE5110_files/notes/lecture19_MCT.pdf
wget -nc http://www.ee.iitm.ac.in/~krishnaj/EE5110_files/notes/lecture20_ExpectationDiscrete.pdf
wget -nc http://www.ee.iitm.ac.in/~krishnaj/EE5110_files/notes/lecture21_ExpectationofCRVs.pdf
wget -nc http://www.ee.iitm.ac.in/~krishnaj/EE5110_files/notes/lecture22_variance_covariance.pdf
wget -nc http://www.ee.iitm.ac.in/~krishnaj/EE5110_files/notes/lecture23_conditional_expectation.pdf
wget -nc http://www.ee.iitm.ac.in/~krishnaj/EE5110_files/notes/lecture24_pgf.pdf
wget -nc http://www.ee.iitm.ac.in/~krishnaj/EE5110_files/notes/lecture25_MGF.pdf
wget -nc http://www.ee.iitm.ac.in/~krishnaj/EE5110_files/notes/lecture26_CF.pdf
wget -nc http://www.ee.iitm.ac.in/~krishnaj/EE5110_files/notes/lecture27_Concentration.pdf
wget -nc http://www.ee.iitm.ac.in/~krishnaj/EE5110_files/notes/lecture28_Convergence.pdf
wget -nc http://www.ee.iitm.ac.in/~krishnaj/EE5110_files/notes/lecture29_LLN.pdf
wget -nc http://www.ee.iitm.ac.in/~krishnaj/EE5110_files/notes/lecture30_CLT.pdf
# Concat them into one (OSX)
/System/Library/Automator/Combine\ PDF\ Pages.action/Contents/Resources/join.py --output probability_foundations_all.pdf\
lecture1_set_theory.pdf\
lecture2_Realanalysis.pdf\
lecture3_cardinality.pdf\
lecture4_probability_spaces.pdf\
lecture5_properties%20of%20prob%20measures.pdf\
lecture6_Discrete%20Probability.pdf\
lecture7_Borel%20Sets%20and%20Lebesgue%20Measure.pdf\
lecture8_Infinite%20Coin%20Toss.pdf\
lecture9_Conditioning_and_Independence.pdf\
lecture10_bclemma.pdf\
lecture11_rvs.pdf\
lecture11_Part_Two_Types_Of_Random_Variables.pdf\
lecture12_Multiple_Random_Variables_and_Independence.pdf\
lecture13_Conditional_Distributions_and_Joint_Continuity.pdf\
lecure14_Introduction_to_Transformation_of_RVs.pdf\
lecture15_Sums_of_RVs.pdf\
lecture16_General_transformations_of_RVs.pdf\
lecture17_Integration_and_Expectation.pdf\
lecture18_Properties_of_integrals.pdf\
lecture19_MCT.pdf\
lecture20_ExpectationDiscrete.pdf\
lecture21_ExpectationofCRVs.pdf\
lecture22_variance_covariance.pdf\
lecture23_conditional_expectation.pdf\
lecture24_pgf.pdf\
lecture25_MGF.pdf\
lecture26_CF.pdf\
lecture27_Concentration.pdf\
lecture28_Convergence.pdf\
lecture29_LLN.pdf\
lecture30_CLT.pdf
@AliHaider-007
Copy link

Dear sir,
Can you kindly share solution for these notes?
Thanks

@cnjackhu
Copy link

cnjackhu commented Mar 6, 2020

Can you share the solutions?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment