summaryrefslogtreecommitdiff
path: root/1172/CH2/EX2.6
diff options
context:
space:
mode:
Diffstat (limited to '1172/CH2/EX2.6')
-rwxr-xr-x1172/CH2/EX2.6/2_6.txt3
-rwxr-xr-x1172/CH2/EX2.6/Example2_6.sce14
2 files changed, 17 insertions, 0 deletions
diff --git a/1172/CH2/EX2.6/2_6.txt b/1172/CH2/EX2.6/2_6.txt
new file mode 100755
index 000000000..6d0316658
--- /dev/null
+++ b/1172/CH2/EX2.6/2_6.txt
@@ -0,0 +1,3 @@
+ # Problem 6 #
+ The maximum electric force on electron is 4.800000e-17 N along y -axis
+The maximum magnetic force on electron is 3.200000e-17 N along z - axis
diff --git a/1172/CH2/EX2.6/Example2_6.sce b/1172/CH2/EX2.6/Example2_6.sce
new file mode 100755
index 000000000..e4be80321
--- /dev/null
+++ b/1172/CH2/EX2.6/Example2_6.sce
@@ -0,0 +1,14 @@
+clc
+// Given That
+E_0 = 300 // maximum electric field in electromagnetic wave in w/m
+v = 2e8 // speed of moving electron in m/s along y - axis
+c = 3e8 // speed of light in m/s
+q = 1.6e-19 // charge on electron in coulomb
+//Sample Problem 6 Page No. 81
+printf ("\n # Problem 6 # \n ")
+B_0 = E_0 / c // calculation of magnitude of maximum magnetic field
+F_e = q*E_0 // calculation of electromagnetic force on electron in N
+F_b = q*v*B_0 // calculation of magnetic force on electron in N
+ printf ("The maximum electric force on electron is %e N along y -axis \n", F_e)
+ printf("The maximum magnetic force on electron is %e N along z - axis\n", F_b)
+