What is this equation in simplified form

Thread Starter

mentat

Joined Mar 22, 2010
9
f = d'[b + (c xor a)'] + dcb'

Also, if only a and c are active high, and the rest are active low, what changes have to be made when building the circuit? :confused:
 

redlight000

Joined Feb 26, 2010
66
Looks like & Im not a maths expert, no way near,,

if look f=freq d< maybe decibel, c=capacitance and Im sure xor a is " xor a is a xor a Lgoic gate.. the dcb it looks like you have to add it..

sorry this is a bit of a flimsy answer... eek hope Im not totally wrong!!!
if you send the complete formular, it may throw more light on it" For the maths wizzes on here they are really good sgtwookie for one..
regards
redlight
:D
 

studiot

Joined Nov 9, 2007
4,998
Looks like a logic expression to me.

d' is the same as (not d) the dash being used to indicated negation.

All the letters are boolean or logic variables.
 

studiot

Joined Nov 9, 2007
4,998
So where have you got to with it?

We don't do homework for people here, but will help if you show some working up to where you are stuck.
 

Thread Starter

mentat

Joined Mar 22, 2010
9
So where have you got to with it?

We don't do homework for people here, but will help if you show some working up to where you are stuck.
The deadline has passed and I already solved it by myself.

d'[b + (c xor a)'] + dcb'
d'[b + c'a + ca'] + dcb'
d'b + d'c'a + d'ca' + dcb'
 

zgozvrm

Joined Oct 24, 2009
115
You should be able to verify it yourself. Make a truth table for each. Is the outcome of each truth table the same? If so, then you were successful.

Unfortunately, this is not the case...

Let's call your solution g
Try, for example, the case where:
a = false
b = false
c = false
d = false

In this case f = true and g = false, therefore f ≠ g
 
Last edited:

Georacer

Joined Nov 25, 2009
5,182
Careful: (C XOR A)=C'A+CA'. So there is no way that (C XOR A)'=CA'+C'A. It's just the same expression in reverse.

The correct answer is CA+C'A'. But please post the proof as an exercise for yourself. Are you familia with the deMorgan's theorem? It is a must if you want to understand boolean expression conversion.
 
Top