summaryrefslogtreecommitdiff
path: root/3792/CH3/EX3.25/Ex3_25.sce
diff options
context:
space:
mode:
Diffstat (limited to '3792/CH3/EX3.25/Ex3_25.sce')
-rw-r--r--3792/CH3/EX3.25/Ex3_25.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/3792/CH3/EX3.25/Ex3_25.sce b/3792/CH3/EX3.25/Ex3_25.sce
new file mode 100644
index 000000000..2dca932fa
--- /dev/null
+++ b/3792/CH3/EX3.25/Ex3_25.sce
@@ -0,0 +1,10 @@
+// SAMPLE PROBLEM 3/25
+clc;funcprot(0);
+// Given data
+v_A=740;// m/s
+r_A=6000*10^6;// km
+r_B=75*10^6;// km
+
+// Calculation
+v_B=(r_A*v_A)/r_B;// m/s
+printf("\nThe speed of comet at the point B of closest approach to the sun,v_B=%5.0f m/s",v_B);