create account

How to Give Solution to a Problem using Logic Circuit by thinkingmind

View this thread on: hive.blogpeakd.comecency.com
· @thinkingmind · (edited)
$23.81
How to Give Solution to a Problem using Logic Circuit
#### What Will I Learn?
- Users will learn how to create a logic circuit design based on conditions from word problem.
- Users will learn how to use the boolean algebra and truth table to make the design
- Users will learn how to simulate the designed logic circuit to evaluate the possible action of circuitry.

#### Requirements
For users to follow the tutorial, they are required to have.
- Logisim circuit simulator (can be downloaded at https://logisim.en.uptodown.com/windows)
- Basic background on Boolean Algebra functions
- Basic background on Truth table


#### Difficulty
- Intermediate

#### Tutorial Contents
This tutorial is about how to design a logic circuit based on the conditions given in the word problem. The phasing of this tutorial is in the following manner;
- 1.) determining conditions 
- 2.) formulating function equation
- 3.) creating the truth table
- 4.) simulating the circuit using logisim 

##### The Problem
This will be the word problem I'm talking before. We will make a logic circuit design to bring solution to this problem.

> In a bank, there were four employees. They are the bank manager, assistant manager, teller and the security guard. The bank has a single vault for the storage of their money. This vault was designed so that it needs four signals to open it. These four signals are from manager, assistant manager, teller and the security guard. For the vault to open it needs the following conditions;
> 1. No single employer can open the vault.
> 2. Can be opened with three employees which includes the manager
> 3. Can be opened by the manager together with the assistant manager.

> We want to design a logic circuit that will automatically open the vault if the conditions above where met.

##### Solution 
Here are the steps/procedures to design logic circuit for this problem.

##### 1. Representation of Logic
In logic circuit, we used only the logic 1 and 0. For this, we will assign the following logic to open and close.
- Logic 1 = Open
- Logic 0 = Close

##### 2. Writing the formula of the function
We will assign symbols for the logic of the employees;
- A= Manager (Logic 1 = A , Logic 0 =a)
- B= Assistant manager (Logic 1 = B , Logic 0 = b)
- C= Teller (Logic 1 = C , Logic 0 = c)
- D= Security Guard (Logic 1 = D , Logic 0 = d)

For this, we will consider the logic for opening the vault, which is logic 1. From the above conditions, we will formulate every functions that would result to Logic 1 or opening of vault. 
So, for the second condition, the vault will open if three employees including the manager will open. Here are the functions to make it logic 1;
- AbCD = (assistant manager is did not open)
- ABcD = (teller did not open)
- ABCd = (security guard did not open)
- ABCD = (all employees open it)

For the third condition it says, can be opened by the manager together with assistant manager. Here is the function;
- ABcd = (teller and security guard did not open)

##### The complete function that will open the vault based on the given conditions is;
##### f(A,B,C,D) = AbCD + ABcD + ABCd + ABCD +ABcd  
We will label the function equation above as function 1(not simplified).

Using the knowledge in boolean algebra, we will simplify the function equation. Simplifying of equation will result in shorter equation, less logic gates to used, easier to build the circuitry and easier to create the truth table.

##### Simplifying process
- f(A,B,C,D) = AbCD + ABcD + ABCd + ABCD +ABcd  
- we will find first which variable is common. For this, the common is AB. So, we will rearrangement with the common variable and factor out the common variable/s
- f(A,B,C,D) = AbCD + AB(cD + cd + CD + Cd) ; factor out again the common
- f(A,B,C,D) = AbCD + AB[c(D+d) + C(D+d)]
- ORing with its complement will give a logic 1. Therefore, D+d = 1 and c+C =1.
- f(A,B,C,D) = AbCD + AB[c(1) + C(1)]
- f(A,B,C,D) = AbCD + AB(c + C)
- f(A,B,C,D) = AbCD + AB

##### So, our simplified equation is;
##### f(A,B,C,D) = AbCD + AB
We will label it equation 2(simplified)

##### Creating the Truth table

From the function equation we can create the truth table base from its action. For example, the function AbCD + AB;
- f(A,B,C,D) = AbCD + AB
- f(A.B.C.D) = (1 . 0 . 1 . 1) + (1.1)
- f(A,B,C,D) = 0 + 1 = 1

Here's the complete Truth Table

A     B   C    D  |  Open vault (f)
----------------|------------------
0     0    0    0   |  0
0     0    0    1   |  0
0     0    1    0   |  0
0     0    1    1   |  0
0     1    0    0   |  0
0     1    0    1   |  0
0     1    1    0   |  0
0     1    1    1   |  0
1     0    0    0   |  0
1     0    0    1   |  0
1     0    1    0   |  0
1     0    1    1   |  1
1     1    0    0   |  1
1     1    0    1   |  1
1     1    1    0   |  1
1     1    1    1   |  1

##### Creating the Logic circuit
We will try to simulate the two logic circuits here, equation (not simplified) and equation 2(simplified). We will prove that the two equations have the same result.

##### 1. Equation 1(not simplified)
f(A,B,C,D) = AbCD + ABcD + ABCd + ABCD +ABcd  
In this circuit, there are 4 (product of variables) and 5 (sum of the product). So, we need 5 AND gates for the products and 2 OR gates for the sum of products and 5 inverters. I am using two OR gates to balance the circuit and it will not be crowded.

##### 1.1 Opening Logisim
We can open the Logisim from the folder where it was located and find for the application file.
This is the working window of Logisim
![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519699754/zolkgtbktkcrrog8v6h1.png)

##### 1.2 Adding components
To add components, locate the components from the library in the left side of the window. Click the components needed and click again to the canvass to place.
![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519700185/mthfbutdhaqtflncjafk.png)

Here are the components needed.
![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519700343/iv1rtunghjsuoravmfzb.png)

##### 1.3 Editing the circuit
To edit the circuit, click the components and change the property table located at lower left side of window. You can also use a text box to insert text to the circuit for labeling.
![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519700697/qcvsa7zmyrchj5rcx02a.png)

##### 1.4 Wiring the components
To wire, click the pin of components to start and click again to end the wiring. Here is our wired logic circuit.
![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519701597/xwrsznaiinjgsk9zzvxc.png)

##### 1.5 Simulation
To simulate, check the simulation enabled in the simulation menu. Select the change value command located at the upper left side of the toolbar. Change value command will able to user the change the state logic of input.
![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519701997/zvbnog3gclppeitbguqx.png)

We will try to simulate some inputs and verify it with our created truth table.
Example 1.)     1    1    0    1
<center>![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519707328/oqni9dg5febhoqbm2flx.png)</center>


Example 2.)    1    0    0   1
![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519707602/ikpz77mmzqkh3ik3gbei.png)


Example 3.)    1    1    1    1
![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519707714/kzigoi96ymqn6fxvhnyf.png)

Based from the simulated example, our logic circuit's output coincides with our truth table. Therefore, our logic circuit is correct met the conditions stated in the problem and it is correct.


##### Equation 2(simplified)
Now we will simulate the simplified equation. f(A,B,C,D) = AbCD + AB. 
This function now have much lesser components. It includes 2 AND gates, 1 inverter and 1 OR gate.

##### 2.1 Creating the logic circuit
> Follow the procedure above to create the circuit.

Here is our logic circuit with function equation  f(A,B,C,D) = AbCD + AB. 
![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519708630/mkchqys1g0lhfdcnwuoq.png)

##### 2.2 Simulate
> Same process may apply from the previous simulation
 
Example 1.)    1    1    0    1
![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519708870/o05ovlmv880l4kgm5sru.png)

Example 2.)    1    0    0    1
![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519709041/ydsali192zasps6bni7l.png)

Example 3.)    1    1    1    1
![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519709259/m4k0nok4nenplq0237bh.png)

Based on the simulation example above, it has the same result with the not simplified function. Therefore, our second circuit met the condition of the problem and it is correct

#### Curriculum
Here are my other tutorials, you can check this out for reference. This might could help you.
- [Tutorial on How to Construct Power Supply Circuit from Schematic Diagram to Breadboard Prototype and to Breadboard Construction.](https://utopian.io/utopian-io/@thinkingmind/tutorial-on-how-to-construct-power-supply-circuit-from-schematic-diagram-to-breadboard-prototype-and-to-breadboard-construction)
- [EasyEDA PCB Layout | How to transfer your schematic diagram to PCB design in EasyEDA](https://utopian.io/utopian-io/@thinkingmind/easyeda-pcb-layout-or-how-to-transfer-your-schematic-diagram-to-pcb-design-in-easyeda)
- [How to Create Schematic and PCB Libs in EasyEDA](https://utopian.io/utopian-io/@thinkingmind/how-to-create-schematic-and-pcb-libs-in-easyeda)
- [Understanding Thevenin Theorem | A circuit theorem explained with the aid of circuit simulator](https://utopian.io/utopian-io/@thinkingmind/understanding-thevenin-theorem-or-a-circuit-theorem-explained-with-the-aid-of-circuit-simulator)
- [Understanding Zener Diode | Investigating How Zener Diode can be Use as Voltage Regulator](https://utopian.io/utopian-io/@thinkingmind/understanding-zener-diode-or-investigating-how-zener-diode-can-be-use-as-voltage-regulator)
    

<br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@thinkingmind/how-to-give-solution-to-a-problem-using-logic-circuit">Utopian.io -  Rewarding Open Source Contributors</a></em><hr/>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authorthinkingmind
permlinkhow-to-give-solution-to-a-problem-using-logic-circuit
categoryutopian-io
json_metadata"{"community":"utopian","app":"utopian/1.0.0","format":"markdown","repository":{"id":24217298,"name":"logisim-evolution","full_name":"reds-heig/logisim-evolution","html_url":"https://github.com/reds-heig/logisim-evolution","fork":false,"owner":{"login":"reds-heig"}},"pullRequests":[],"platform":"github","type":"tutorials","tags":["utopian-io","tutorial","technology","philippines","electronics"],"users":["thinkingmind"],"links":["https://res.cloudinary.com/hpiynhbhq/image/upload/v1519699754/zolkgtbktkcrrog8v6h1.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519700185/mthfbutdhaqtflncjafk.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519700343/iv1rtunghjsuoravmfzb.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519700697/qcvsa7zmyrchj5rcx02a.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519701597/xwrsznaiinjgsk9zzvxc.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519701997/zvbnog3gclppeitbguqx.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519707328/oqni9dg5febhoqbm2flx.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519707602/ikpz77mmzqkh3ik3gbei.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519707714/kzigoi96ymqn6fxvhnyf.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519708630/mkchqys1g0lhfdcnwuoq.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519708870/o05ovlmv880l4kgm5sru.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519709041/ydsali192zasps6bni7l.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519709259/m4k0nok4nenplq0237bh.png","https://utopian.io/utopian-io/@thinkingmind/tutorial-on-how-to-construct-power-supply-circuit-from-schematic-diagram-to-breadboard-prototype-and-to-breadboard-construction","https://utopian.io/utopian-io/@thinkingmind/easyeda-pcb-layout-or-how-to-transfer-your-schematic-diagram-to-pcb-design-in-easyeda","https://utopian.io/utopian-io/@thinkingmind/how-to-create-schematic-and-pcb-libs-in-easyeda","https://utopian.io/utopian-io/@thinkingmind/understanding-thevenin-theorem-or-a-circuit-theorem-explained-with-the-aid-of-circuit-simulator","https://utopian.io/utopian-io/@thinkingmind/understanding-zener-diode-or-investigating-how-zener-diode-can-be-use-as-voltage-regulator"],"image":["https://res.cloudinary.com/hpiynhbhq/image/upload/v1519699754/zolkgtbktkcrrog8v6h1.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519700185/mthfbutdhaqtflncjafk.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519700343/iv1rtunghjsuoravmfzb.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519700697/qcvsa7zmyrchj5rcx02a.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519701597/xwrsznaiinjgsk9zzvxc.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519701997/zvbnog3gclppeitbguqx.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519707328/oqni9dg5febhoqbm2flx.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519707602/ikpz77mmzqkh3ik3gbei.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519707714/kzigoi96ymqn6fxvhnyf.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519708630/mkchqys1g0lhfdcnwuoq.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519708870/o05ovlmv880l4kgm5sru.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519709041/ydsali192zasps6bni7l.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519709259/m4k0nok4nenplq0237bh.png"],"moderator":{"account":"knowledges","time":"2018-04-24T16:51:21.805Z","reviewed":false,"pending":true,"flagged":false},"questions":null,"score":null,"config":{"questions":[{"question":"How many substantial concepts does this tutorial address?","question_id":"tuts-1","answers":[{"answer":"4-5 substantial concepts covered in the tutorial.","answer_id":"tuts-1-a-1","value":10},{"answer":"2-3 substantial concepts covered in the tutorial.","answer_id":"tuts-1-a-2","value":7},{"answer":"1 substantial concept covered in the tutorial.","answer_id":"tuts-1-a-3","value":3},{"answer":"More than 5 substantial concepts covered in the tutorial.","answer_id":"tuts-1-a-4","value":0}]},{"question":"Does the title and the outline of the tutorial properly reflect the content?","question_id":"tuts-2","answers":[{"answer":"Yes, it is very clear.","answer_id":"tuts-2-a-1","value":15},{"answer":"To some extent.","answer_id":"tuts-2-a-2","value":11.5},{"answer":"The title is somewhat misleading and/or the outline is not detailed or informative enough.","answer_id":"tuts-2-a-3","value":4.5},{"answer":"Title and outline are of little or no relevance to the content of the tutorial.","answer_id":"tuts-2-a-4","value":0}]},{"question":"Did the contributor provide supplementary resources, such as code and sample files in the contribution post or a linked GitHub repository?","question_id":"tuts-3","answers":[{"answer":"Yes, exceptional supplementary resources are provided including a relevant github repo/gist.","answer_id":"tuts-3-a-1","value":15},{"answer":"Supplementary resources provided are of high relevance.","answer_id":"tuts-3-a-2","value":12},{"answer":"Contributor provides minimal supplementary resources.","answer_id":"tuts-3-a-3","value":6},{"answer":"No supplementary resources were provided.","answer_id":"tuts-3-a-4","value":0}]},{"question":"Is the tutorial part of a series?","question_id":"tuts-4","answers":[{"answer":"Yes.","answer_id":"tuts-4-a-1","value":10},{"answer":"Yes, but it is the first entry in the series.","answer_id":"tuts-4-a-2","value":7},{"answer":"No, but it works just fine as a stand-alone tutorial.","answer_id":"tuts-4-a-3","value":5},{"answer":"No.","answer_id":"tuts-4-a-4","value":0}]},{"question":"Does the tutorial contain sufficient explanatory visuals?","question_id":"tuts-5","answers":[{"answer":"Yes, the visual components of the post were adequate in quality and quantity.","answer_id":"tuts-5-a-1","value":10},{"answer":"The volume of visual components included was unnecessarily large.","answer_id":"tuts-5-a-2","value":7},{"answer":"The post lacked sufficient visualization to easily learn from the content.","answer_id":"tuts-5-a-3","value":3},{"answer":"No visualization was presented in this contribution.","answer_id":"tuts-5-a-4","value":0}]},{"question":"How unique and/or innovative are the concepts covered in the tutorial?","question_id":"tuts-6","answers":[{"answer":"This was the first time I read about the concepts covered.","answer_id":"tuts-6-a-1","value":10},{"answer":"The concepts covered were innovative and offer some usefulness.","answer_id":"tuts-6-a-2","value":7},{"answer":"I have read several similar ideas and thoughts elsewhere, but this one was of higher quality.","answer_id":"tuts-6-a-3","value":5},{"answer":"Such tutorials can be found online with great ease and the contribution add no value to the open source community.","answer_id":"tuts-6-a-4","value":0}]},{"question":"How would you describe the formatting, language and overall presentation of the post?","question_id":"c-1","answers":[{"answer":"The quality of the post is fantastic.","answer_id":"c-1-a-1","value":10},{"answer":"The post is of very good quality.","answer_id":"c-1-a-2","value":7},{"answer":"The post is poorly written and/or formatted, but readable.","answer_id":"c-1-a-3","value":3},{"answer":"The post is really hard to read and the content is barely understandable.","answer_id":"c-1-a-4","value":0}]},{"question":"How would you rate the overall value of this contribution on the open source community and ecosystem?","question_id":"c-2","answers":[{"answer":"This contribution brings great and impactful value, and can be used for applications outside the specific project.","answer_id":"c-2-a-1","value":20},{"answer":"This contribution adds significant value to the open source community and ecosystem, or is of critical importance to the specific project.","answer_id":"c-2-a-2","value":18},{"answer":"This contribution adds some value to the open source community and ecosystem or is only valuable to the specific project.","answer_id":"c-2-a-3","value":11},{"answer":"This contribution adds no value to the open source community and ecosystem or the specific project.","answer_id":"c-2-a-4","value":0}]}]}}"
created2018-02-27 05:57:33
last_update2018-04-24 16:56:48
depth0
children4
last_payout2018-03-06 05:57:33
cashout_time1969-12-31 23:59:59
total_payout_value16.540 HBD
curator_payout_value7.265 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10,175
author_reputation4,255,833,468,352
root_title"How to Give Solution to a Problem using Logic Circuit"
beneficiaries
0.
accountutopian.pay
weight2,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,787,474
net_rshares5,164,602,552,115
author_curate_reward""
vote details (53)
@laxam ·
Thank you for the contribution. It has been approved.

You can contact us on [Discord](https://discord.gg/uTyJkNm).
**[[utopian-moderator]](https://utopian.io/moderators)**
properties (22)
authorlaxam
permlinkre-thinkingmind-how-to-give-solution-to-a-problem-using-logic-circuit-20180227t115425398z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-02-27 11:54:27
last_update2018-02-27 11:54:27
depth1
children1
last_payout2018-03-06 11:54:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length172
author_reputation4,021,844,514,967
root_title"How to Give Solution to a Problem using Logic Circuit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,851,288
net_rshares0
@thinkingmind ·
thank you..
properties (22)
authorthinkingmind
permlinkre-laxam-re-thinkingmind-how-to-give-solution-to-a-problem-using-logic-circuit-20180227t122335457z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-27 12:23:33
last_update2018-02-27 12:23:33
depth2
children0
last_payout2018-03-06 12:23:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation4,255,833,468,352
root_title"How to Give Solution to a Problem using Logic Circuit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,856,552
net_rshares0
@moneysteemit ·
good article, but I am a bit hard to understand the picture, sorry, not your picture is not accurate, maybe I, a little more serious learning again, to make it easier to understand, success slalu friend
properties (22)
authormoneysteemit
permlinkre-thinkingmind-2018425t0425909z
categoryutopian-io
json_metadata{"tags":["utopian-io","tutorial","technology","philippines","electronics"],"app":"esteem/1.6.0","format":"markdown+html","community":"esteem"}
created2018-04-24 17:04:36
last_update2018-04-24 17:04:36
depth1
children0
last_payout2018-05-01 17:04:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length202
author_reputation160,074,130,178
root_title"How to Give Solution to a Problem using Logic Circuit"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,902,855
net_rshares0
@utopian-io ·
### Hey @thinkingmind I am @utopian-io. I have just upvoted you!
#### Achievements
- You have less than 500 followers. Just gave you a gift to help you succeed!
- Seems like you contribute quite often. AMAZING!
#### Community-Driven Witness!
I am the first and only Steem Community-Driven Witness. <a href="https://discord.gg/zTrEMqB">Participate on Discord</a>. Lets GROW TOGETHER!
- <a href="https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1">Vote for my Witness With SteemConnect</a>
- <a href="https://v2.steemconnect.com/sign/account-witness-proxy?proxy=utopian-io&approve=1">Proxy vote to Utopian Witness with SteemConnect</a>
- Or vote/proxy on <a href="https://steemit.com/~witnesses">Steemit Witnesses</a>

[![mooncryption-utopian-witness-gif](https://steemitimages.com/DQmYPUuQRptAqNBCQRwQjKWAqWU3zJkL3RXVUtEKVury8up/mooncryption-s-utopian-io-witness-gif.gif)](https://steemit.com/~witnesses)

**Up-vote this comment to grow my power and help Open Source contributions like this one. Want to chat? Join me on Discord https://discord.gg/Pc8HG9x**
properties (22)
authorutopian-io
permlinkre-thinkingmind-how-to-give-solution-to-a-problem-using-logic-circuit-20180228t125054798z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-02-28 12:50:54
last_update2018-02-28 12:50:54
depth1
children0
last_payout2018-03-07 12:50:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,088
author_reputation152,955,367,999,756
root_title"How to Give Solution to a Problem using Logic Circuit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id41,118,850
net_rshares0