diff options
Diffstat (limited to '1991/CH2/EX2.10/10.sce')
-rwxr-xr-x | 1991/CH2/EX2.10/10.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1991/CH2/EX2.10/10.sce b/1991/CH2/EX2.10/10.sce new file mode 100755 index 000000000..1b44ac276 --- /dev/null +++ b/1991/CH2/EX2.10/10.sce @@ -0,0 +1,13 @@ +clc
+clear
+//input magnitude of forces
+f1=40
+f2=50
+//calculation
+d=50^2+40^2+2*50*40*cosd(50)//finding the diagonal
+r=50^2+40^2+2*50*(40)*cosd(130)//reversing the side and finding diagonlprintf("the resultant is %3.3f",d1)
+r1=sqrt(r)//resultant sum
+d1=sqrt(d)// resultant when smaller force is subtracted from larger
+//output
+printf("1. the resultant sum is %3.3f N",d1)
+printf("\n 2. the resultant when smaller force is subtracted from larger is %3.3f N",r1)
|