From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 1553/CH11/EX11.22/11Ex22.sce | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 1553/CH11/EX11.22/11Ex22.sce (limited to '1553/CH11/EX11.22') diff --git a/1553/CH11/EX11.22/11Ex22.sce b/1553/CH11/EX11.22/11Ex22.sce new file mode 100644 index 000000000..a5954427f --- /dev/null +++ b/1553/CH11/EX11.22/11Ex22.sce @@ -0,0 +1,16 @@ +//Chapter 9 Ex 22 + +clc; +close; +clear; +x=poly(0,'x'); +gain=(20/100); +CP=x; +CP1=(3/4)*CP; +CP2=(1/4)*CP; //given +SP=((1+gain)*CP1)+CP2; +gain=SP-CP; +gainper=(gain/CP)*100; +mprintf("The gain percentage is"); +disp(gainper) +mprintf("percent"); -- cgit