summaryrefslogtreecommitdiff
path: root/1427/CH9/EX9.4
diff options
context:
space:
mode:
Diffstat (limited to '1427/CH9/EX9.4')
-rw-r--r--1427/CH9/EX9.4/9_4.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/1427/CH9/EX9.4/9_4.sce b/1427/CH9/EX9.4/9_4.sce
new file mode 100644
index 000000000..a79e94f1b
--- /dev/null
+++ b/1427/CH9/EX9.4/9_4.sce
@@ -0,0 +1,10 @@
+//ex-4
+//Calculating amount of an element formed from an alloy
+clc
+M=10;//Mass of alloy AB given (in g)
+p=25;//Percentage of A in AB
+w1=(p/100)*M;//Weight of A in AB (in g)
+w2=M-w1;//Weight of B in AB (in g)
+w3=w2/3;//Weight of B separated out on cooling in eutectic (in g)
+ans=w2-w3;//Original amount-Amount in eutectic (in g)
+printf("Amount of B formed = %.1f g.",ans);