-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(solutions-landing): added landing page + nav bar for all solutio…
…n sketches
- Loading branch information
1 parent
eb07620
commit 1714b6d
Showing
16 changed files
with
95 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
--- | ||
layout: default | ||
--- | ||
|
||
<nav class="breadcrumbs"> | ||
{% assign subpaths = page.path | split: '/' %} | ||
{% if subpaths.last == 'index.md' %} | ||
{% assign new_length = subpaths.size | minus: 1 %} | ||
{% assign subpaths = subpaths | slice: 0, new_length %} | ||
{% endif %} | ||
|
||
[ | ||
{% assign curr_path = '' %} | ||
{% for subpath in subpaths %} | ||
{% assign path = subpath | remove: '.md' %} | ||
{% if forloop.last %} | ||
<b>{{ path }}</b> | ||
{% else %} | ||
{% assign curr_path = curr_path | append: '/' | append: subpath %} | ||
<a href="{{ curr_path }}">{{ path }}</a> | ||
{% endif %} | ||
{% unless forloop.last %} | ||
| | ||
{% endunless %} | ||
{% endfor %} | ||
] | ||
</nav> | ||
|
||
{{content}} |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
--- | ||
layout: landing | ||
--- | ||
|
||
# Solution sketches to various texts | ||
|
||
---- | ||
|
||
Here are some solutions to selected problems from several foundational texts in a variety of fields. These mostly represent my own progress through teaching myself a more rigorous foundation of the mathematics underpinning modern statistics and ML. I can only hope that they also provide valuable insights for others on this journey. | ||
|
||
## Real analysis | ||
|
||
||Name of work|Author|Solution sketches| | ||
|---|---|---| | ||
|![][pugh]{:.resize}|_Real Mathematical Analysis_|Charles Pugh|Forthcoming| | ||
|![][rudin]{:.resize}|_Principles of Mathematical Analysis_|Walter Rudin|Forthcoming| | ||
|![][spivak]{:.resize}|_Calculus on Manifolds_|Michael Spivak|Forthcoming| | ||
|![][sheldon]{:.resize}|_Measure, Integration, and Real Analysis_|Sheldon Axler|Forthcoming| | ||
|
||
## Abstract and linear algebra | ||
|
||
||Name of work|Author|Solution sketches| | ||
|---|---|---| | ||
|![][artin]{:.resize}|_Algebra_|Michael Artin|Forthcoming| | ||
|![][axler]{:.resize}|_Linear Algebra Done Right_|Sheldon Axler|Forthcoming| | ||
|![][cookbook]{:.resize}|_The Matrix Cookbook_|Kaare Petersen, Michael Pedersen|Forthcoming| | ||
|
||
## Probability and statistics | ||
|
||
||Name of work|Author|Solution sketches| | ||
|---|---|---| | ||
|![][statsci]{:.resize}|_Probability and Statistics_|Ronald Walpole, Raymond Myers|Forthcoming| | ||
|![][esl]{:.resize}|_Elements of Statistical Learning_|Trevor Hastie, Robert Tibshirani,<br> Jerome Friedman|Forthcoming| | ||
|
||
## Machine learning | ||
|
||
||Name of work|Author|Solution sketches| | ||
|---|---|---| | ||
|![][mlapp]{:.resize}|_Machine Learning: A Probabilistic Perspective_|Kevin Murphy|Forthcoming| | ||
|![][bishop]{:.resize}|_Deep Learning: Foundations and Concepts_|Christopher Bishop|Forthcoming| | ||
|
||
[pugh]: ../../_data/books/pugh/cover.jpg | ||
[rudin]: ../../_data/books/rudin/cover.jpg | ||
[spivak]: ../../_data/books/spivak/cover.jpg | ||
[sheldon]: ../../_data/books/sheldon/cover.jpg | ||
|
||
[artin]: ../../_data/books/artin/cover.jpg | ||
[axler]: ../../_data/books/axler/cover.jpg | ||
[cookbook]: ../../_data/books/cookbook/cover.png | ||
|
||
[statsci]: ../../_data/books/statsci/cover.jpg | ||
[esl]: ../../_data/books/esl/cover.jpg | ||
|
||
[mlapp]: ../../_data/books/mlapp/cover.jpg | ||
[bishop]: ../../_data/books/bishop/cover.jpg |