summaryrefslogtreecommitdiff
path: root/3782/CH10/EX10.4/Ex10_4.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3782/CH10/EX10.4/Ex10_4.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3782/CH10/EX10.4/Ex10_4.sce')
-rw-r--r--3782/CH10/EX10.4/Ex10_4.sce30
1 files changed, 30 insertions, 0 deletions
diff --git a/3782/CH10/EX10.4/Ex10_4.sce b/3782/CH10/EX10.4/Ex10_4.sce
new file mode 100644
index 000000000..57b6898b7
--- /dev/null
+++ b/3782/CH10/EX10.4/Ex10_4.sce
@@ -0,0 +1,30 @@
+
+//
+
+//
+
+ab=30,bc=90,cd=140,
+
+l1=250,l2=150,l3=325,
+
+
+abc=210-bc
+t1=0.5*abc
+bcd=270-cd
+t2=0.5*bcd
+t3=180-(t1+t2)
+
+
+k=(sin(t2*(%pi/180)))/(sin(t3*(%pi/180)))
+OB=l2*k
+k1=(sin(t1*(%pi/180)))/(sin(t3*(%pi/180)))
+OC=l2*k1
+printf("\n OB,OC")
+R=OB*(sin(t1*(%pi/180)))
+printf("\n Radius R= %0.3f ",R)
+
+BT1=OB*(cos(t1*(%pi/180)))
+CT1=OC*(cos(t2*(%pi/180)))
+
+printf("\n Tangent length BT1= %0.3f ",BT1)
+printf("\n Tangent length CT1= %0.3f ",CT1)