I am an undergraduate double major in Physics and Studio Art at Austin Peay State University. I learn physics and math best by creating simplified study sheets often using colors and shapes to help with memorization. The notes often gloss over the...
Don't wanna be here? Send us removal request.
Photo

I love mathematical magic tricks. Here is how one of my favorites works. You can find a good tutorial on how to do to the trick here: https://www.youtube.com/watch?v=fJ8VA9ICq8Q
#Mary's notes#the final three#the final three card trick explanation#card trick explanations#up down card elimination trick#final three trick explained#card trick explained#mathematical card tricks
2 notes
·
View notes
Photo

#Mary's Notes#Quadric Surfaces#Quadric Surface Identification#calculus#ellipsoid#ellipsoid equation#one sheet hyperboloid#one sheet hyperboloid equation#two sheet hyperboloid#two sheet hyperboloid equation#elliptic cone#elliptic cone equation#elliptic paraboloid#elliptic paraboloid equation#hyperbolic paraboloid#hyperbolic paraboloid equation
20 notes
·
View notes
Photo

A series of Bessel Functions of the First Kind: https://en.wikipedia.org/wiki/Bessel_function
MATLAB SCRIPT:
y = linspace (-10,100, 1000);
[x0] = besselj(0, y); [x1] = besselj(1, y); [x2] = besselj(2, y); [x3] = besselj(3, y); [x4] = besselj(4, y); [x5] = besselj(5, y); [x6] = besselj(6, y); [x7] = besselj(7, y); [x8] = besselj(8, y); [x9] = besselj(9, y); [x10] = besselj(10, y); [x11] = besselj(11, y);
plot (y, x0, 'LineWidth', 1.5, 'Color',[0.4,0,0]) %red hold on plot (y, x1, 'LineWidth', 1.5, 'Color',[0.4,0.4,0])%yellow plot (y, x2, 'LineWidth', 1.5, 'Color',[0,0.4,0])%green plot (y, x3, 'LineWidth', 1.5, 'Color',[0,0,0.4])%blue plot (y, x4, 'LineWidth', 1.5, 'Color',[0.8,0,0])%red plot (y, x5, 'LineWidth', 1.5, 'Color',[0.8,0.8,0])%yellow plot (y, x6, 'LineWidth', 1.5, 'Color',[0,0.8,0])%green plot (y, x7, 'LineWidth', 1.5, 'Color',[0,0,0.8])%blue plot (y, x8, 'LineWidth', 1.5, 'Color',[1,0,0])%red plot (y, x9, 'LineWidth', 1.5, 'Color',[1,1,0])%yellow plot (y, x10, 'LineWidth', 1.5, 'Color',[0,1,0])%green plot (y, x11, 'LineWidth', 1.5, 'Color',[0,0,1])%blue
axis([-10 100 -0.58 1]) legend('J_0', 'J_1', 'J_2', 'J_3', 'J_4', 'J_5', 'J_6', 'J_7', 'J_8', 'J_9', 'J_{10}', 'J_{11}', 'Location', 'northeast') xlabel('x'); ylabel('y(x)'); title({'Bessel Functions of the First Kind'});
#Mary's Notes#Bessel functions#bessel function graph#bessel functions of the first kind#bessel functions of the first kind graph#Matlab bessel functions#Matlab bessel functions of the first kind#Matlab#Matlab bessel function script#differential equations#math#physics
2 notes
·
View notes
Photo

#Mary's Notes#Right Hand Rule#Right Hand Rule Physics#physics#beginners physics#cross product#force direction from cross product
1 note
·
View note
Photo




Fourier Approximations for simple x^n functions on [-1, 1]
https://en.wikipedia.org/wiki/Fourier_series
MATLAB SCRIPT:
%Lots of thanks too: %https://www3.nd.edu/~nancy/Math30650/Matlab/Demos/fourier_series/fourier_series.html
%******Magic Fourier Solver****** syms k L n x evalin(symengine,'assume(k,Type::Integer)'); %A_n a = @(f,x,k,L) int(f*cos(k*pi*x/L)/L,x,-L,L); %B_n b = @(f,x,k,L) int(f*sin(k*pi*x/L)/L,x,-L,L); %nth partial sum fs = @(f,x,n,L) a(f,x,0,L)/2 + ... symsum(a(f,x,k,L)*cos(k*pi*x/L) + b(f,x,k,L)*sin(k*pi*x/L),k,1,n);
%******FUNCTIONS(s) GO HERE******* f1 = x;
%******Plotter****** figure
p1 = ezplot(fs(f1,x,1,1)); hold on p2 = ezplot(fs(f1,x,2,1)); p3 = ezplot(fs(f1,x,3,1)); p4 = ezplot(fs(f1,x,4,1)); p5 = ezplot(fs(f1,x,5,1)); p6 = ezplot(fs(f1,x,6,1)); p7 = ezplot(fs(f1,x,7,1)); p8 = ezplot(fs(f1,x,8,1)); p9 = ezplot(fs(f1,x,9,1)); p10 = ezplot(fs(f1,x,100,1)); p11 = ezplot(fs(f1,x,1000,1));
%Graph Customization set(p1, 'LineWidth', 1.2, 'Color',[0.8,0,0.2]) set(p2, 'LineWidth', 1.2, 'Color',[1,0,0]) set(p3, 'LineWidth', 1.2, 'Color',[1,0.5,0]) set(p4, 'LineWidth', 1.2, 'Color',[1,1,0]) set(p5, 'LineWidth', 1.2, 'Color',[0,1,0]) set(p6, 'LineWidth', 1.2, 'Color',[0,0.6,0.2]) set(p7, 'LineWidth', 1.2, 'Color',[0,0.8,0.8]) set(p8, 'LineWidth', 1.2, 'Color',[0,0,1]) set(p9, 'LineWidth', 1.2, 'Color',[0.2,0,0.8]) set(p10, 'LineWidth', 1.2, 'Color',[0.5,0,0.5]) set(p11, 'LineWidth', 1.2, 'Color',[0,0,0])
axis([-1 1 -1.5 1.5]) grid on legend('n=1', 'n=2', 'n=3', 'n=4', 'n=5', 'n=6', 'n=7', 'n=8', 'n=9', 'n=100', 'n=1000', 'Location', 'best') xlabel('x'); ylabel('y'); title({'Fourier Approximations for f(x) = (Function goes here)'});
#Mary's Notes#Fourier Approximation#Fourier Series#Fourier approximations of any function#fourier approximations in matlab#Matlab#Matlab fourier code#fourier curve fitting#rainbow fourier series
1 note
·
View note
Photo


#Mary's Notes#Ground State Configurations#electron configurations#subshells#shells#hotel model for an atom#hotel model#atomic physics#electrons#ground state electronic configurations#easy way to find configurations for atoms#atomic configurations#physics#chemistry
2 notes
·
View notes
Photo



#Mary's Notes#atomic term symbols#Fluorine term symbols#finding atomic term symbols#electron subshells#physics#chemistry#physics notes
1 note
·
View note
Photo





All graphs done in Matlab, and their explanations are formatted with Overleaf.com.
#differential equations#Mary's Notes#Slope field of differential equation#slope field#simple differential equations#ordinary differential equations#DE Notes#Matlab#dy/dx = x#graphs of differential equations#math#math notes#calculus
2 notes
·
View notes
Photo




#Wave Particle Duality#Quantum Mechanics#Mary's Notes#Photoelectric effect#Physics Notes#Lines in Spectra#The Compton Effect#Bragg Scattering#Electron Waves#Double Slit Experiment#DeBroglie wavelength
3 notes
·
View notes
Photo


#particle in a box#particle in infinite potential well#mary's notes#quantum mechanics#schrodingers equation#energy levels#particle in infinite well#wavefunction#simple wave function#simplified quantum mechanics
7 notes
·
View notes
Photo

Divergence theorem basics.
#Mary's Notes#Divergence Theorem#volume integral#surface integral#physics notes#flux through a cube#gauss law#divergence#flux#charge enclosed#cube
4 notes
·
View notes
Photo

How to use Kirchhoff’s laws and matrix row operations to find the currents in a simple circuit.
#Mary's Notes#Kirchhoff's Laws#gaussian elimination#ohm's laws#physics circuits example#matrices#matrices to solve circuits#circuits#matrix row operations#university physics#kirchoffs laws#finding current in a circuit
1 note
·
View note
Photo

A very simple way to find a linear least squares fit line.
4 notes
·
View notes
Photo





#Vector Calculus#Vector Calculus Notes#Vector Curl#Line Integrals#Surface Integrals#Line Integrals explained#Surface Integrals explained#Stokes Theorem#Stokes theorem explained#stokes theorem tutorial#Vectors#Calculus#Math Notes#Mary's Notes
11 notes
·
View notes
Photo

0 notes
Photo

Made with a combination of Matlab and Adobe Photoshop
1 note
·
View note