<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Ask Ghassem - Recent activity in Discrete Mathematics</title>
<link>https://ask.ghassem.com/activity/data-science/discrete-mathematics</link>
<description>Powered by Question2Answer</description>
<item>
<title>Probability of a bus arrived in its destination based on weather condition</title>
<link>https://ask.ghassem.com/953/probability-arrived-destination-based-weather-condition</link>
<description>A bus is making its way to a destination. If the weather conditions are favorable today, the likelihood of delay is 3%. If the weather conditions are not favorable today, the likelihood of delay is 50%. The forecast predicts that it is 20% likely that the weather conditions will be favorable today.&lt;br /&gt;
&lt;br /&gt;
1. What is the likelihood that the bus will be delayed?&lt;br /&gt;
&lt;br /&gt;
2. The bus has arrived, but it was delayed. Given that the bus was delayed, what is the likelihood that the weather conditions were favorable?</description>
<category>Discrete Mathematics</category>
<guid isPermaLink="true">https://ask.ghassem.com/953/probability-arrived-destination-based-weather-condition</guid>
<pubDate>Mon, 09 Nov 2020 13:06:47 +0000</pubDate>
</item>
<item>
<title>Commented: How can I prove that following is a tautology (using laws of logical equivalences)</title>
<link>https://ask.ghassem.com/818/prove-that-following-tautology-using-logical-equivalences?show=831#c831</link>
<description>If you can record a video, and explain step by step, that would be much better. It could be confusing how you conclude line 6 from line 5, &amp;nbsp;but if you just record a video and talk over it while solving, that will be clarified. In addition, I removed your personal information such as student number from your post. Please do not include them while posting publicly.</description>
<category>Discrete Mathematics</category>
<guid isPermaLink="true">https://ask.ghassem.com/818/prove-that-following-tautology-using-logical-equivalences?show=831#c831</guid>
<pubDate>Tue, 18 Feb 2020 19:50:20 +0000</pubDate>
</item>
<item>
<title>Answered: can someone send me an online link to discrete mathematics 8th edition textbook?</title>
<link>https://ask.ghassem.com/813/someone-send-online-discrete-mathematics-edition-textbook?show=816#a816</link>
<description>&lt;p&gt;I think &lt;a rel=&quot;nofollow&quot; href=&quot;http://93.174.95.29/_ads/638D5EC2547DEF019458AB88AD39A040&quot;&gt;this link&lt;/a&gt;&amp;nbsp;is what you want. However, it is better you purchase the book&lt;/p&gt;</description>
<category>Discrete Mathematics</category>
<guid isPermaLink="true">https://ask.ghassem.com/813/someone-send-online-discrete-mathematics-edition-textbook?show=816#a816</guid>
<pubDate>Thu, 13 Feb 2020 15:27:35 +0000</pubDate>
</item>
<item>
<title>Understanding symbolic language of problem, quantificational  logic</title>
<link>https://ask.ghassem.com/786/understanding-symbolic-language-problem-quantificational</link>
<description>&lt;p&gt;Hi, i am having trouble interpreting the information contained in the relation &lt;strong&gt;R, &lt;/strong&gt;and how it should be applied to the Ps in this problem:&lt;/p&gt;

&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Consider the formula&amp;nbsp;&lt;/p&gt;

&lt;h3&gt;∃x∃y∃z(P(x,y)∧P(z,y)∧P(x,z)∧¬P(z,x))&lt;/h3&gt;

&lt;p&gt;Under each pf these interpretations, is this formula true? In each case, R is the relation corresponding to P.&lt;/p&gt;

&lt;p&gt;(a) U = N,&amp;nbsp; &amp;nbsp;&lt;strong&gt;R = {&amp;lt;x,y&amp;gt; : x&amp;lt;y}.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;(b) U = N,&amp;nbsp; &amp;nbsp;&lt;strong&gt;R = {&amp;lt;x,x+1&amp;gt; : x≥0}.&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Does &amp;lt;x,y&amp;gt; refer to the variables x,y or z in each P(a,b), and the :x&amp;lt;y refer to what the relation between these two should be?&lt;/p&gt;

&lt;p&gt;I tried something like this for (a) and got:&lt;/p&gt;

&lt;p&gt;∃x∃y∃z((x&amp;lt;y)∧(z&amp;lt;y)∧(x&amp;lt;z)∧¬(z&amp;lt;x))&lt;/p&gt;

&lt;p&gt;However I&#039;m not sure if this is correct, and I&#039;m not sure how I would do it for (b)&lt;/p&gt;</description>
<category>Discrete Mathematics</category>
<guid isPermaLink="true">https://ask.ghassem.com/786/understanding-symbolic-language-problem-quantificational</guid>
<pubDate>Sun, 26 Jan 2020 11:18:05 +0000</pubDate>
</item>
<item>
<title>Answer selected: What are the values stored in tc8 format for the following numbers?</title>
<link>https://ask.ghassem.com/782/what-are-the-values-stored-tc8-format-for-following-numbers?show=785#a785</link>
<description>Q1-ANS)&lt;br /&gt;
for -117d:&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$-117d = -(01110101)b$&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$-(01110101)b = 10001010(oc8) + 1 = 10001011(tc8)$&lt;br /&gt;
&lt;br /&gt;
for -127d:&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$-127d=-(01111111)b$&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$-(01111111)b = 10000000(oc8) + 1 = 10000001(tc8)$&lt;br /&gt;
&lt;br /&gt;
for 127d:&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$127d = 01111111b = 01111111(tc8)$&lt;br /&gt;
&lt;br /&gt;
for 0d:&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$0d = 00000000b$&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$Two&amp;#039;s complement &amp;nbsp;= one&amp;#039;s complement + 1 = 11111111(oc8) +1 = 00000000(tc8)$&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;due to overflow the 9th digit is removed&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Q2-ANS)&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$10010001(tc8) = -(01101110+1)d = -(01101111)b = -((0 × 2^7) + (1 × 2^6) + (1 × 2^5) + (0 × 2^4) + (1 × 2^3) + (1 × 2^2) + (1 × 2^1) + (1 × 2^0))d &amp;nbsp;= -111d$&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$00010001(tc8) = ((0 × 2^6) + (0 × 2^5) + (1 × 2^4) + (0 × 2^3) + (0 × 2^2) + (0 × 2^1) + (1 × 2^0))d = 17d$&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;3.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$01111111(tc8) = ((1 × 2^6) + (1 × 2^5) + (1 × 2^4) + (1 × 2^3) + (1 × 2^2) + (1 × 2^1) + (1 × 2^0))d = 127d$&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$0000000 (tc8) = ((0 × 2^6) + (0 × 2^5) + (0 × 2^4) + (0 × 2^3) + (0 × 2^2) + (0 × 2^1) + (0 × 2^0))d = 0d$&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;5.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$11111111(tc8) = -(00000000 + 1)b = -(00000001) = -1d$&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Answer submitted by Amirhossein Azizafshari from Thursday 1 PM class.</description>
<category>Discrete Mathematics</category>
<guid isPermaLink="true">https://ask.ghassem.com/782/what-are-the-values-stored-tc8-format-for-following-numbers?show=785#a785</guid>
<pubDate>Fri, 24 Jan 2020 01:02:27 +0000</pubDate>
</item>
<item>
<title>Answer selected: How do i find the inverse of the function?</title>
<link>https://ask.ghassem.com/763/how-do-i-find-the-inverse-of-the-function?show=764#a764</link>
<description>Hey there bro. Let me teach you a trick to solving simple inverse functions. Let&amp;#039;s use your question as an example. Let&amp;#039;s switch the x and the y. This will give us $x = 4y + 5$. Now try and isolate the y again. You should end up with $y = (x-5)/4$. have fun!</description>
<category>Discrete Mathematics</category>
<guid isPermaLink="true">https://ask.ghassem.com/763/how-do-i-find-the-inverse-of-the-function?show=764#a764</guid>
<pubDate>Fri, 06 Dec 2019 04:35:19 +0000</pubDate>
</item>
<item>
<title>Answer selected: How to calculate $g[h(3)]$ if $g(x)= 2x+3$ and $h(x) =4x+5$ ?</title>
<link>https://ask.ghassem.com/766/how-to-calculate-g-h-3-if-g-x-2x-3-and-h-x-4x-5?show=768#a768</link>
<description>You need to calculate $h(3)$ first. $h(3)= 4\times3+5=17$.&lt;br /&gt;
&lt;br /&gt;
Therefore, $g[h(3)]=g(17)= 2\times17+3=37$.</description>
<category>Discrete Mathematics</category>
<guid isPermaLink="true">https://ask.ghassem.com/766/how-to-calculate-g-h-3-if-g-x-2x-3-and-h-x-4x-5?show=768#a768</guid>
<pubDate>Fri, 06 Dec 2019 04:35:09 +0000</pubDate>
</item>
<item>
<title>Answered: Can anyone please solve Q7 pg 329 in Induction?</title>
<link>https://ask.ghassem.com/761/can-anyone-please-solve-q7-pg-329-in-induction?show=762#a762</link>
<description>Never mind, I was able to solve it myself. The trick was rearranging and factoring $5^{k+1}$ and add exponents to get $5^{k+2}$.</description>
<category>Discrete Mathematics</category>
<guid isPermaLink="true">https://ask.ghassem.com/761/can-anyone-please-solve-q7-pg-329-in-induction?show=762#a762</guid>
<pubDate>Thu, 05 Dec 2019 22:10:12 +0000</pubDate>
</item>
<item>
<title>Answer selected: Could you please share a good cheat sheet for logic gates?</title>
<link>https://ask.ghassem.com/181/could-you-please-share-a-good-cheat-sheet-for-logic-gates?show=182#a182</link>
<description>&lt;p&gt;Please take a look at the following table that contains most common logic gates and their truth tables. You can download it by clicking on it.&lt;/p&gt;

&lt;p&gt;&lt;img alt=&quot;&quot; height=&quot;924&quot; src=&quot;https://i.imgur.com/NNBh9Bg.jpg&quot; width=&quot;564&quot;&gt;&lt;/p&gt;</description>
<category>Discrete Mathematics</category>
<guid isPermaLink="true">https://ask.ghassem.com/181/could-you-please-share-a-good-cheat-sheet-for-logic-gates?show=182#a182</guid>
<pubDate>Fri, 15 Mar 2019 17:38:23 +0000</pubDate>
</item>
<item>
<title>Answered: What&#039;s the differences between [NOT p OR NOT q]  and [NOT (p OR q) ]</title>
<link>https://ask.ghassem.com/302/whats-the-differences-between-not-p-or-not-q-and-not-p-or-q?show=340#a340</link>
<description>&lt;table border=&quot;1&quot; cellpadding=&quot;1&quot; style=&quot;width:500px; border-spacing: 1px;&quot;&gt;
	&lt;tbody&gt;
		&lt;tr&gt;
			&lt;td&gt;p&lt;/td&gt;
			&lt;td&gt;q&lt;/td&gt;
			&lt;td&gt;not p&lt;/td&gt;
			&lt;td&gt;not q&lt;/td&gt;
			&lt;td&gt;not p or not q&lt;/td&gt;
			&lt;td&gt;p or q&lt;/td&gt;
			&lt;td&gt;not(p or q)&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;td&gt;T&lt;/td&gt;
			&lt;td&gt;T&lt;/td&gt;
			&lt;td&gt;F&lt;/td&gt;
			&lt;td&gt;F&lt;/td&gt;
			&lt;td&gt;F&lt;/td&gt;
			&lt;td&gt;T&lt;/td&gt;
			&lt;td&gt;F&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;td&gt;T&lt;/td&gt;
			&lt;td&gt;F&lt;/td&gt;
			&lt;td&gt;F&lt;/td&gt;
			&lt;td&gt;T&lt;/td&gt;
			&lt;td&gt;T&lt;/td&gt;
			&lt;td&gt;T&lt;/td&gt;
			&lt;td&gt;F&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;td&gt;F&lt;/td&gt;
			&lt;td&gt;T&lt;/td&gt;
			&lt;td&gt;T&lt;/td&gt;
			&lt;td&gt;F&lt;/td&gt;
			&lt;td&gt;T&lt;/td&gt;
			&lt;td&gt;T&lt;/td&gt;
			&lt;td&gt;F&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;td&gt;F&lt;/td&gt;
			&lt;td&gt;F&lt;/td&gt;
			&lt;td&gt;T&lt;/td&gt;
			&lt;td&gt;T&lt;/td&gt;
			&lt;td&gt;T&lt;/td&gt;
			&lt;td&gt;F&lt;/td&gt;
			&lt;td&gt;T&lt;/td&gt;
		&lt;/tr&gt;
	&lt;/tbody&gt;
&lt;/table&gt;

&lt;p&gt;I write a truth&amp;nbsp;table about the question,&amp;nbsp; you can find that [NOT p OR NOT q] and [NOT(p OR q)]are different.&lt;/p&gt;

&lt;div&gt;&amp;nbsp;&lt;/div&gt;</description>
<category>Discrete Mathematics</category>
<guid isPermaLink="true">https://ask.ghassem.com/302/whats-the-differences-between-not-p-or-not-q-and-not-p-or-q?show=340#a340</guid>
<pubDate>Fri, 12 Oct 2018 19:07:35 +0000</pubDate>
</item>
<item>
<title>Answered: Could you please share cheat sheet of Logic Operations?</title>
<link>https://ask.ghassem.com/303/could-you-please-share-cheat-sheet-of-logic-operations?show=304#a304</link>
<description>&lt;p&gt;You can &lt;a rel=&quot;nofollow&quot; href=&quot;https://www.cs.uic.edu/~hogand/cs151/resources/reference-sheets/prop-logic-reference.pdf&quot;&gt;download the pdf version from here&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a rel=&quot;nofollow&quot; href=&quot;https://i.imgur.com/B7fBkWJ.png&quot;&gt;https://i.imgur.com/B7fBkWJ.png&lt;/a&gt;&lt;br&gt;
&lt;a rel=&quot;nofollow&quot; href=&quot;https://i.imgur.com/9bd62ba.png&quot;&gt;https://i.imgur.com/9bd62ba.png&lt;/a&gt;&lt;/p&gt;</description>
<category>Discrete Mathematics</category>
<guid isPermaLink="true">https://ask.ghassem.com/303/could-you-please-share-cheat-sheet-of-logic-operations?show=304#a304</guid>
<pubDate>Mon, 08 Oct 2018 17:52:18 +0000</pubDate>
</item>
<item>
<title>Answered: What does verifying message integrity have to do with boolean simplification and truth tables?</title>
<link>https://ask.ghassem.com/271/verifying-message-integrity-boolean-simplification-tables?show=281#a281</link>
<description>&lt;p&gt;The message is considered as &quot;&lt;strong&gt;corrupted&lt;/strong&gt;&quot; if in the destination we do not have the same message. The question&amp;nbsp;is quite simple I believe. Do not overthink :-)&lt;/p&gt;</description>
<category>Discrete Mathematics</category>
<guid isPermaLink="true">https://ask.ghassem.com/271/verifying-message-integrity-boolean-simplification-tables?show=281#a281</guid>
<pubDate>Sat, 06 Oct 2018 13:49:31 +0000</pubDate>
</item>
<item>
<title>Commented: What is the priority order of Either Or (EOR) when constructing truth tables</title>
<link>https://ask.ghassem.com/261/what-priority-order-either-when-constructing-truth-tables?show=270#c270</link>
<description>So I believe I found the order, and it turns out the XOR is in between AND and OR, it can be shown in precedence order 8,9 and 10, in the following link&lt;br /&gt;
&lt;a href=&quot;https://en.cppreference.com/w/c/language/operator_precedence&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://en.cppreference.com/w/c/language/operator_precedence&lt;/a&gt;&lt;br /&gt;
Thank You.</description>
<category>Discrete Mathematics</category>
<guid isPermaLink="true">https://ask.ghassem.com/261/what-priority-order-either-when-constructing-truth-tables?show=270#c270</guid>
<pubDate>Thu, 04 Oct 2018 14:02:45 +0000</pubDate>
</item>
<item>
<title>Commented: Is this answer to a question counted as a legitimate answer</title>
<link>https://ask.ghassem.com/260/is-this-answer-to-a-question-counted-as-a-legitimate-answer?show=269#c269</link>
<description>Well I did have another solution which is the following, &lt;br /&gt;
&lt;br /&gt;
NOT(p OR NOT q) OR &amp;nbsp;NOT(p OR NOT q)&lt;br /&gt;
&lt;br /&gt;
I feel like this would be a better answer, but I still have the same concern as of the first one</description>
<category>Discrete Mathematics</category>
<guid isPermaLink="true">https://ask.ghassem.com/260/is-this-answer-to-a-question-counted-as-a-legitimate-answer?show=269#c269</guid>
<pubDate>Thu, 04 Oct 2018 13:54:39 +0000</pubDate>
</item>
<item>
<title>Retagged: Is there any easy way to draw the Truth Table for logic expressions?</title>
<link>https://ask.ghassem.com/187/there-any-easy-way-draw-the-truth-table-for-logic-expressions?show=187#q187</link>
<description>I can solve the Truth Table, but do not know how to verify my answers. Could you please suggest a tool for it?</description>
<category>Discrete Mathematics</category>
<guid isPermaLink="true">https://ask.ghassem.com/187/there-any-easy-way-draw-the-truth-table-for-logic-expressions?show=187#q187</guid>
<pubDate>Tue, 02 Oct 2018 16:32:36 +0000</pubDate>
</item>
<item>
<title>Answered: Where can I find the solution manual for Discrete Mathematics and Its Applications by Rosen?</title>
<link>https://ask.ghassem.com/185/where-solution-manual-discrete-mathematics-applications?show=186#a186</link>
<description>&lt;p&gt;I just searched in Google and I found these two links to &lt;strong&gt;&lt;a rel=&quot;nofollow&quot; href=&quot;https://gitlab.com/timofonic/bkkkk/raw/master/Rosen_Discrete_Mathematics_and_Its_Applications_7th_Edition.pdf&quot;&gt;the book&lt;/a&gt;&lt;/strong&gt;&amp;nbsp;and to its &lt;a rel=&quot;nofollow&quot; href=&quot;https://ia800409.us.archive.org/12/items/DiscreteMathematicsAndItsApplications7thEditionKennethH.RosenStudentsSolutionsGuidel/Discrete%20Mathematics%20and%20Its%20Applications%20%5B7th%20Edition%5D%20-%20Kenneth%20H.%20Rosen%20Students%20Solutions%20Guidel.pdf&quot;&gt;&lt;strong&gt;solution manual&lt;/strong&gt;&lt;/a&gt;. If the links are broken, try to search for them!&lt;/p&gt;</description>
<category>Discrete Mathematics</category>
<guid isPermaLink="true">https://ask.ghassem.com/185/where-solution-manual-discrete-mathematics-applications?show=186#a186</guid>
<pubDate>Fri, 28 Sep 2018 17:18:31 +0000</pubDate>
</item>
<item>
<title>Answer selected: How can I convert between binary/hexadecimal numbers with decimals into a decimal number system</title>
<link>https://ask.ghassem.com/22/convert-between-binary-hexadecimal-numbers-decimals-decimal?show=30#a30</link>
<description>&lt;p&gt;&amp;nbsp;&lt;/p&gt;

&lt;p&gt;I&amp;nbsp;have written the&amp;nbsp;procedure&amp;nbsp;down, please&amp;nbsp;click the link&lt;/p&gt;

&lt;p&gt;&lt;a rel=&quot;nofollow&quot; href=&quot;https://imgur.com/gallery/2N4eqBb&quot;&gt;https://imgur.com/gallery/&lt;/a&gt;&lt;a rel=&quot;nofollow&quot; href=&quot;https://imgur.com/gallery/2N4eqBb&quot;&gt;2N4eqBb&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;img alt=&quot;&quot; height=&quot;2143&quot; src=&quot;https://i.imgur.com/sUcLiLY.jpg&quot; width=&quot;2856&quot;&gt;&lt;/p&gt;

&lt;p&gt;And you can also click the links of WolframAlpha&amp;nbsp;below to check the answers&lt;/p&gt;

&lt;p&gt;&lt;a rel=&quot;nofollow&quot; href=&quot;http://www.wolframalpha.com/input/?i=011010.011+in+binary+to+decimal&quot;&gt;011010.011 in binary to decimal&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a rel=&quot;nofollow&quot; href=&quot;https://www.wolframalpha.com/input/?i=1C0DE.4A+base16+to+decimal&quot;&gt;1C0DE.4A base16 to decimal&lt;/a&gt;&lt;/p&gt;</description>
<category>Discrete Mathematics</category>
<guid isPermaLink="true">https://ask.ghassem.com/22/convert-between-binary-hexadecimal-numbers-decimals-decimal?show=30#a30</guid>
<pubDate>Thu, 27 Sep 2018 05:45:33 +0000</pubDate>
</item>
<item>
<title>Edited: Where can I find some good Numbering System Exercises and learning it better?</title>
<link>https://ask.ghassem.com/20/where-find-some-numbering-system-exercises-learning-better?show=20#q20</link>
<description>I have a math course at College and I am wondering if someone can show me resources I can use to improve my math skills in discrete math, especially for Number Systems?</description>
<category>Discrete Mathematics</category>
<guid isPermaLink="true">https://ask.ghassem.com/20/where-find-some-numbering-system-exercises-learning-better?show=20#q20</guid>
<pubDate>Sun, 16 Sep 2018 01:53:44 +0000</pubDate>
</item>
</channel>
</rss>