diff options
Diffstat (limited to '3769/CH26/EX26.10')
-rw-r--r-- | 3769/CH26/EX26.10/Ex26_10.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3769/CH26/EX26.10/Ex26_10.sce b/3769/CH26/EX26.10/Ex26_10.sce new file mode 100644 index 000000000..0feefa350 --- /dev/null +++ b/3769/CH26/EX26.10/Ex26_10.sce @@ -0,0 +1,13 @@ +clear +//Given +ni=1.5*10**16 ///m**3 +a=5*10**28 +b=10.0**6 + +//Calculation +Ne=a/b +nh=ni**2/Ne + +//Result +printf("\n Number of Electrons is %0.3f /m**3",Ne) +printf("\n Number of holes is %0.3f *10**9 /m**3",nh*10**-9) |