MoleMash recreation – AppInventor
Turtle recreation – Python
cOMPLEX MATH algorithm
electronVolt conversion to joule
convolution /correlation
graphics processing
calculate tax rate
calculate mortgage/vehicle loan payments
timer/stopwatch
animation
physics problem solving
data mining
sports games predictions
weather predictions
Pressure=Force/Area calculation for hydraulic system
Fourier Series: HOw many sine waves will it take to make a square wave and what would its amplitude be?
Electrical Circuits: Calculating number of Independent Loops relationship with Number of Nodes?
Program for a traffic light system
Program for converting from polar to rectangular and from rectangular to polar. Also plotting
Program for converting from CM circular mils to square mils ViceVersa
Program for drawing a Wind Chill Chart (search on Google for examples)
Program for doing in Python what the following does in MATLAB:
% S-D Graphics Plot
%Surf function for 3D grpah
[x, y] = meshgrid(-1:0.1:1, -1:0.1:1);
z = x.^2 + y.^2
for a = 1:21,
for b = 1:21,
if z(a,b)>1,
z(a,b) = 1
end
end
end
surf(x,y,z)
xlabel(‘x’)
ylabel(‘y’)
zlabel(‘z’)
title(‘sample MeshGrid plot’)