<< Chapter < Page Chapter >> Page >

Step 5 : Looking at the equation, it is easy to note that we need to have two fraction term with nominator and denominator. Thus, copy the block to display vertical term i.e. copy and paste “mfrac” code lines 9 to12 and modify according to the requirement(new lines 17 to 20). Copy and paste code lines 13 to 16 and modify as required (new lines 21 to 24). Finally copy and paste code lines 9 to 12 again as shown(new lines 25 to 28).

1: <m:math display="block"> 2: <m:mi> x </m:mi> 3: <m:mo> = </m:mo> 4: <m:mo> [ </m:mo> 5: <m:mn> 3200 </m:mn> 6: <m:mo> ( </m:mo> 7: <m:mn> 1 </m:mn> 8: <m:mo> - </m:mo> 9: <m:mfrac> 10: <m:mn> 5 </m:mn> 11: <m:mn> 100 </m:mn> 12: </m:mfrac> 13: <m:mo> ) </m:mo> 14: <m:mo> ( </m:mo> 15: <m:mn> 1 </m:mn> 16: <m:mo> + </m:mo> 17: 9: <m:mfrac> 18: 10: <m:mn> 10 </m:mn> 19: 11: <m:mn> 100 </m:mn> 20: 12: </m:mfrac> 21: 13: <m:mo> ) </m:mo> 22: 14: <m:mo> ( </m:mo> 23: 15: <m:mn> 1 </m:mn> 24: 16: <m:mo> + </m:mo> 25: 9: <m:mfrac> 26: 10: <m:mn> 5 </m:mn> 27: 11: <m:mn> 100 </m:mn> 28: 12: </m:mfrac> </m:math>

What you have coded till now : x = [ 3200 ( 1 - 5 100 ) ( 1 + 10 100 ) ( 1 + 5 100

What is to be coded ultimately : x = [ 32000 ( 1 - 5 100 ) ( 1 + 10 100 ) ( 1 + 25 2 100 ) ]

Step 6 : Note that last “mfrac” display requires another “mfrac” implementation. Its numerator itself is a “mfrac” display. Thus, we would require to change the line 26 placed near bottom with a block of “mfrac” codes that shall display “25/2”. For this we replace code line 26 with code block consisting of code lines 9 to 12. In order to make this block as the numerator of the parent “mfrac” element, we need to enclose this block with “mrow” element so that “mfrac” element considers the block as one argument. Change the “mo’ content (lines 10 and 11 at the bottom) to reflect the ratio as 25/2. Finally, add a closing parenthesis and a bracket at the end (lines 29 and 30) as shown.

13: <m:mo> ) </m:mo> 14: <m:mo> ( </m:mo> 15: <m:mn> 1 </m:mn> 16: <m:mo> + </m:mo> 17: 9: <m:mfrac> 18: 10: <m:mn> 10 </m:mn> 19: 11: <m:mn> 100 </m:mn> 20: 12: </m:mfrac> 21: 13: <m:mo> ) </m:mo> 22: 14: <m:mo> ( </m:mo> 23: 15: <m:mn> 1 </m:mn> 24: 16: <m:mo> + </m:mo> 25: 9: <m:mfrac> ---- <m:mrow> 9: <m:mfrac> 10: <m:mn> 25 </m:mn> 11: <m:mn> 2 </m:mn> 12: </m:mfrac> </m:mrow> ----- 27: 11: <m:mn> 100 </m:mn> 28: 12: </m:mfrac> 29: <m:mo> ) </m:mo> 30: <m:mo> ] </m:mo> </m:math>

Step 7 : Save the file as test.xml. The code (after renumbering for reference purpose) at this stage looks like :

13: <m:mo> ) </m:mo> 14: <m:mo> ( </m:mo> 15: <m:mn> 1 </m:mn> 16: <m:mo> + </m:mo> 17: <m:mfrac> 18: <m:mn> 10 </m:mn> 19: <m:mn> 100 </m:mn> 20: </m:mfrac> 21: <m:mo> ) </m:mo> 22: <m:mo> ( </m:mo> 23: <m:mn> 1 </m:mn> 24: <m:mo> + </m:mo> 25: <m:mfrac> 26: <m:mrow> 27: <m:mfrac> 28: <m:mn> 25 </m:mn> 29: <m:mn> 2 </m:mn> 30: </m:mfrac> 31: </m:mrow> 32: <m:mn> 100 </m:mn> 33: </m:mfrac> 34: <m:mo> ) </m:mo> 35: <m:mo> ] </m:mo> </m:math>

What you have coded till now : x = [ 3200 ( 1 - 5 100 ) ( 1 + 10 100 ) ( 1 + 5 100 ) ]

What is to be coded ultimately : x = [ 32000 ( 1 - 5 100 ) ( 1 + 10 100 ) ( 1 + 25 2 100 ) ]

Step 8 : Comparing what we have achieved so far and what is the expected, we need few tweaking here and there. First we see that the brackets have not grown to the vertical height of the terms, composing the equation. In order to do this, we club the part of equation in the brackets within “mrow” tags. Thus, we insert “mrow” tag before line 4 and at the end of the code after line 35. Also, the bars of the three central "mfrac" elements have to be distinguished from the nested one. We use "linethickness" attribute on "mfrac" element and set the same to "medium". The final code and display are shown in the example.

Indices element : mroot

<m:math display="block"> <m:mi> x </m:mi> <m:mo> = </m:mo> <m:mrow> <m:mo> [ </m:mo> <m:mn> 32000 </m:mn> <m:mo> ( </m:mo> <m:mn> 1 </m:mn> <m:mo> - </m:mo> <m:mfrac linethickness="2"> <m:mn> 5 </m:mn> <m:mn> 100 </m:mn> </m:mfrac> <m:mo> ) </m:mo> <m:mo> ( </m:mo> <m:mn> 1 </m:mn> <m:mo> + </m:mo> <m:mfrac linethickness="2"> <m:mn> 10 </m:mn> <m:mn> 100 </m:mn> </m:mfrac> <m:mo> ) </m:mo> <m:mo> ( </m:mo> <m:mn> 1 </m:mn> <m:mo> + </m:mo> <m:mfrac linethickness="2"> <m:mrow> <m:mfrac> <m:mn> 25 </m:mn> <m:mn> 2 </m:mn> </m:mfrac> </m:mrow> <m:mn> 100 </m:mn> </m:mfrac> <m:mo> ) </m:mo> <m:mo> ] </m:mo> </m:mrow> </m:math>

Save the file after editing as “test.xml”. The display looks like :

x = [ 32000 ( 1 - 5 100 ) ( 1 + 10 100 ) ( 1 + 25 2 100 ) ]

Questions & Answers

profit maximize for monopolistically?
Usman Reply
what kind of demand curve under monopoly?
Mik Reply
what is the difference between inflation and scarcity ?
Abdu Reply
What stops oligopolists from acting together as a monopolist and earning the highest possible level of profits?
Mik
why economics is difficult for 2nd school students.
Siraj Reply
what does mean opportunity cost?
Aster Reply
what is poetive effect of population growth
Solomon Reply
what is inflation
Nasir Reply
what is demand
Eleni
what is economics
IMLAN Reply
economics theory describes individual behavior as the result of a process of optimization under constraints the objective to be reached being determined by
Kalkidan
Economics is a branch of social science that deal with How to wise use of resource ,s
Kassie
need
WARKISA
Economic Needs: In economics, needs are goods or services that are necessary for maintaining a certain standard of living. This includes things like healthcare, education, and transportation.
Kalkidan
What is demand and supply
EMPEROR Reply
deman means?
Alex
what is supply?
Alex
ex play supply?
Alex
Money market is a branch or segment of financial market where short-term debt instruments are traded upon. The instruments in this market includes Treasury bills, Bonds, Commercial Papers, Call money among other.
murana Reply
good
Kayode
what is money market
umar Reply
Examine the distinction between theory of comparative cost Advantage and theory of factor proportion
Fatima Reply
What is inflation
Bright Reply
a general and ongoing rise in the level of prices in an economy
AI-Robot
What are the factors that affect demand for a commodity
Florence Reply
price
Kenu
differentiate between demand and supply giving examples
Lambiv Reply
differentiated between demand and supply using examples
Lambiv
what is labour ?
Lambiv
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, A primer in mathml. OpenStax CNX. Apr 19, 2006 Download for free at http://cnx.org/content/col10345/1.16
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'A primer in mathml' conversation and receive update notifications?

Ask