

Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
The equations of motion for a projectile, including the equations for the horizontal and vertical positions, as well as the equation for the trajectory. The document allows the user to input initial velocity and acceleration values, and then calculates and displays the equations of motion and the trajectory plot. The fundamental concepts of projectile motion, which are important in fields such as physics, engineering, and ballistics. By studying this document, students can gain a deeper understanding of the principles governing the motion of projectiles, and learn how to apply these principles to solve real-world problems. The document could be useful for students in various academic programs, including physics, engineering, and applied mathematics, as it provides a comprehensive overview of the topic and the necessary mathematical tools to analyze projectile motion.
Typology: Cheat Sheet
1 / 2
This page cannot be seen from the preview
Don't miss anything!


close all clear all syms v a x y t disp('Nhap du lieu: ') vo=input('vo= '); a=input('a= '); hy= a/(vo2) disp('Phuong trinh chuyen dong cua vat: ') fprintf('x = t^2 '); disp(0.5voa); fprintf('y = t '); disp(vo); disp('Phuong trinh quy dao cua vat: ') fprintf('x – (y^2) '); disp(hy); fprintf('=0'); disp(' '); disp(' '); disp(' '); t1=input('t1='); t2=input('t2='); vy=vo y=vot vx=ay x=0.5vxt figure; fplot(x,y,[t1 t2]);
xlabel('Truc x'); ylabel('Truc y'); grid on