├── .gitignore ├── Code └── Spinors │ └── pauli_matrices.py ├── Images └── Portfolio │ ├── DifferentialGeometryRevisionScreenshot.png │ ├── GaugeTheoryNotesScreenshot.png │ ├── channel_screenshot.png │ ├── relativity_notes_screenshot.png │ └── topology_manifolds_notes_screenshot.png ├── MScThesis └── Edge_Modes_and_Boundary_Condition_in_Gauge_Theories.pdf ├── Notes ├── DifferentialGeometryRevision.pdf ├── PrincipalBundlesAndGaugeTheories.pdf ├── Relativity_Notes.pdf └── TensorsTopologyManifolds.pdf └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | env -------------------------------------------------------------------------------- /Code/Spinors/pauli_matrices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorg314/WHYBmaths/HEAD/Code/Spinors/pauli_matrices.py -------------------------------------------------------------------------------- /Images/Portfolio/DifferentialGeometryRevisionScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorg314/WHYBmaths/HEAD/Images/Portfolio/DifferentialGeometryRevisionScreenshot.png -------------------------------------------------------------------------------- /Images/Portfolio/GaugeTheoryNotesScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorg314/WHYBmaths/HEAD/Images/Portfolio/GaugeTheoryNotesScreenshot.png -------------------------------------------------------------------------------- /Images/Portfolio/channel_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorg314/WHYBmaths/HEAD/Images/Portfolio/channel_screenshot.png -------------------------------------------------------------------------------- /Images/Portfolio/relativity_notes_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorg314/WHYBmaths/HEAD/Images/Portfolio/relativity_notes_screenshot.png -------------------------------------------------------------------------------- /Images/Portfolio/topology_manifolds_notes_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorg314/WHYBmaths/HEAD/Images/Portfolio/topology_manifolds_notes_screenshot.png -------------------------------------------------------------------------------- /MScThesis/Edge_Modes_and_Boundary_Condition_in_Gauge_Theories.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorg314/WHYBmaths/HEAD/MScThesis/Edge_Modes_and_Boundary_Condition_in_Gauge_Theories.pdf -------------------------------------------------------------------------------- /Notes/DifferentialGeometryRevision.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorg314/WHYBmaths/HEAD/Notes/DifferentialGeometryRevision.pdf -------------------------------------------------------------------------------- /Notes/PrincipalBundlesAndGaugeTheories.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorg314/WHYBmaths/HEAD/Notes/PrincipalBundlesAndGaugeTheories.pdf -------------------------------------------------------------------------------- /Notes/Relativity_Notes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorg314/WHYBmaths/HEAD/Notes/Relativity_Notes.pdf -------------------------------------------------------------------------------- /Notes/TensorsTopologyManifolds.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorg314/WHYBmaths/HEAD/Notes/TensorsTopologyManifolds.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorg314/WHYBmaths/HEAD/README.md --------------------------------------------------------------------------------