summaryrefslogtreecommitdiff
path: root/3648/CH1/EX1.3/Ex1_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '3648/CH1/EX1.3/Ex1_3.sce')
-rw-r--r--3648/CH1/EX1.3/Ex1_3.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/3648/CH1/EX1.3/Ex1_3.sce b/3648/CH1/EX1.3/Ex1_3.sce
new file mode 100644
index 000000000..eb581be8d
--- /dev/null
+++ b/3648/CH1/EX1.3/Ex1_3.sce
@@ -0,0 +1,14 @@
+//Example 1_3
+clc();
+clear;
+//To subtract vector B from Vector A
+Ax=8.7 //units in meters
+Ay=5 //units in meters
+Bx=-6 //units in meters
+By=0 //units in meters
+Rx=Ax-Bx //units in meters
+Ry=Ay-By //units in meters
+R=sqrt(Rx^2+Ry^2) //units in meters
+theta=round(atan(Ry/(Rx))*180/%pi) //units in degrees
+printf("Resultant R=%.1f Meters\n",R)
+printf("Angle Theta=%d Degrees",theta)