summaryrefslogtreecommitdiff
path: root/3862/CH1/EX1.4/Ex1_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '3862/CH1/EX1.4/Ex1_4.sce')
-rw-r--r--3862/CH1/EX1.4/Ex1_4.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/3862/CH1/EX1.4/Ex1_4.sce b/3862/CH1/EX1.4/Ex1_4.sce
new file mode 100644
index 000000000..f5f561d0b
--- /dev/null
+++ b/3862/CH1/EX1.4/Ex1_4.sce
@@ -0,0 +1,20 @@
+clear
+//Let the magnitude of the smaller force be F. Hence the magnitude of the larger force is 2F
+
+//
+//variable declaration
+R1=260 //resultant of two forces,N
+R2=(180) //resultant of two forces if larger force is reversed,N
+
+
+
+//calculations
+
+F=sqrt(((R1**2)+(R2**2))/10)
+F1=F
+F2=2*F
+theta=acos(((R1**2)-(F1**2)-(F2**2))/(2*F1*F2))*180/%pi
+
+printf("\n F1= %0.3f N",F1)
+printf("\n F2= %0.3f N",F2)
+printf("\n theta= %0.1f °",theta)