Math, asked by viswacps, 1 year ago

goutham has 33.33% more pencils than rahul has. by how much percent less pencils rahul has than that of goutham

Answers

Answered by VemugantiRahul
23
Hi there!
Here's the answer:

• If A is by x% more than B, then B is less than that of A is 'S%'.
S%= [(100x/100+x)]%
where S% - indicates %shortness.


Now,
say
G- No. of Pencils with Goutham.
R - No. of pencils with Rahul

Given G>R by 33.33% [i.e., (1/3)%]
R<G by 'S%'

S%= [(100×33.33)/(100+33.33)]
S%= 24.99%
•°• R<G by 24.99%.


:)
hope it helps

viswacps: thanks for your help
VemugantiRahul: my pleasure
Answered by KnowMore
2
  &lt;script&gt; <br /><br />         //function that display value <br /><br />         function dis(val) <br /><br />         { <br /><br />             document.getElementById("result").value+=val <br /><br />         } <br /><br />//function that evaluates the digit and return result <br /><br />         function solve() <br /><br />         { <br /><br />             let x = document.getElementById("result").value <br /><br />             let y = eval(x) <br /><br />             document.getElementById("result").value = y <br /><br />         } <br /><br />//function that clear the display <br /><br />         function clr() <br /><br />         { <br /><br />             document.getElementById("result").value = "" <br /><br />         } <br /><br />      &lt;/script&gt; <br /><br />      &lt;!-- for styling --&gt; <br /><br />      &lt;style&gt; <br /><br />         .title{ <br /><br />         margin-bottom: 10px; <br /><br />         text-align:center; <br /><br />         width: 210px; <br /><br />         color:green; <br /><br />         border: solid black 2px; <br /><br />         } <br /><br />input[type="button"] <br /><br />         { <br /><br />         background-color:green; <br /><br />         color: black; <br /><br />         border: solid black 2px; <br /><br />         width:100% <br /><br />         } <br /><br />input[type="text"] <br /><br />         { <br /><br />         background-color:white; <br /><br />         border: solid black 2px; <br /><br />         width:100% <br /><br />         } <br /><br />      &lt;/style&gt; <br /><br />   &lt;/head&gt; <br /><br />   &lt;!-- create table --&gt; <br /><br />   &lt;body&gt; <br /><br />      &lt;div class = title &gt;Calculator for Calculation&lt;/div&gt; <br /><br />      &lt;table border="1"&gt; <br /><br />         &lt;tr&gt; <br /><br />            &lt;td colspan="3"&gt;&lt;input type="text" id="result"/&gt;&lt;/td&gt; <br /><br />            &lt;!-- clr() function will call clr to clear all value --&gt; <br /><br />            &lt;td&gt;&lt;input type="button" value="c" onclick="clr()"/&gt; &lt;/td&gt; <br /><br />         &lt;/tr&gt; <br /><br />         &lt;tr&gt; <br /><br />            &lt;!-- create button and assign value to each button --&gt; <br /><br />            &lt;!-- dis("1") will call function dis to display value --&gt; <br /><br />            &lt;td&gt;&lt;input type="button" value="1" onclick="dis('1')"/&gt; &lt;/td&gt; <br /><br />            &lt;td&gt;&lt;input type="button" value="2" onclick="dis('2')"/&gt; &lt;/td&gt; <br /><br />            &lt;td&gt;&lt;input type="button" value="3" onclick="dis('3')"/&gt; &lt;/td&gt; <br /><br />            &lt;td&gt;&lt;input type="button" value="/" onclick="dis('/')"/&gt; &lt;/td&gt; <br /><br />         &lt;/tr&gt; <br /><br />         &lt;tr&gt; <br /><br />            &lt;td&gt;&lt;input type="button" value="4" onclick="dis('4')"/&gt; &lt;/td&gt; <br /><br />            &lt;td&gt;&lt;input type="button" value="5" onclick="dis('5')"/&gt; &lt;/td&gt; <br /><br />            &lt;td&gt;&lt;input type="button" value="6" onclick="dis('6')"/&gt; &lt;/td&gt; <br /><br />            &lt;td&gt;&lt;input type="button" value="-" onclick="dis('-')"/&gt; &lt;/td&gt; <br /><br />         &lt;/tr&gt; <br /><br />         &lt;tr&gt; <br /><br />            &lt;td&gt;&lt;input type="button" value="7" onclick="dis('7')"/&gt; &lt;/td&gt; <br /><br />            &lt;td&gt;&lt;input type="button" value="8" onclick="dis('8')"/&gt; &lt;/td&gt; <br /><br />            &lt;td&gt;&lt;input type="button" value="9" onclick="dis('9')"/&gt; &lt;/td&gt; <br /><br />            &lt;td&gt;&lt;input type="button" value="+" onclick="dis('+')"/&gt; &lt;/td&gt; <br /><br />         &lt;/tr&gt; <br /><br />         &lt;tr&gt; <br /><br />            &lt;td&gt;&lt;input type="button" value="." onclick="dis('.')"/&gt; &lt;/td&gt; <br /><br />            &lt;td&gt;&lt;input type="button" value="0" onclick="dis('0')"/&gt; &lt;/td&gt; <br /><br />            &lt;!-- solve function call function solve to evaluate value --&gt; <br /><br />            &lt;td&gt;&lt;input type="button" value="=" onclick="solve()"/&gt; &lt;/td&gt; <br /><br />            &lt;td&gt;&lt;input type="button" value="*" onclick="dis('+')"/&gt; &lt;/td&gt; <br /><br />         &lt;/tr&gt; <br /><br />      &lt;/table&gt;

You can use the above calculator for maths calculation....lol

<br /><br />    &lt;h2 style="font-family:Chaparral Pro Light;"&gt;Hope it helps.&lt;/h2&gt;

  
Attachments:
Similar questions