answersLogoWhite

0

if f :- a+b = ac

then fd:- a.b = a+c

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

Is y equals x plus 3 a function?

It is normally regarded as an equation, where y is a function of x. It is possible to regard it as a boolean expression (the equality is true or false).


Write a program that allows the user to input a word or phrase and then determine if its a palindrome. I need to use a Boolean equals valued Function procedure names IsPalindrome. How?

forward(word) backward(word)


Is the following a linear function 3x plus 4y plus 2 equals 0?

Yes.


What points lies on the graph of the function y equals 4x?

Since there are no "following" points, none of them.


Which of the following is the domain of the function GFx Fx equals x - 2 Gy equals 7 GFx equals 7?

All numbers less than or equal to 8


What are four Boolean operators?

Depends on the computer language, the Boolean operators may have different looks, but all the basic ones should be in place:Equality (Equals(), ==, IsTrue, IsFalse), to compare 2 boolean valuesNot (~, !, .NOT. ), negation or compliment. That is, !True TrueAnd (&, &&, .AND.), the intersection.Or (|, , .OR.), the union


What is the answer to 2 X plus 4 equals 3 X minus 2?

It is "False" (which is a Boolean variable)


Which function has the following a vertical asymptote at x equals -4 horizontal asymptote at y equals 0 and a removable discontinuity at x equals 1?

2x-2/x^2+3x-4


Why 1 plus 1 equals 1 in OR gate whereas 1 plus 1 equals 0 carry 1?

Because the 'plus sign' ( + ) in Boolean algebra does not mean the same thing as it does in arithmetic. In the shorthand of Boolean logic operations, the plus sign is used to mean ' OR ' .


1 plus 1 equals 2 in case you know that?

1 plus 1 equals 1 (in Boolean logic) 1 plus 1 equals 10 (in base 2)


Which of the following will form the composite function GFx shown below GFx equals x3 - 5?

Nick Bobo sucks dick


What is a Boolean condition?

A boolean is a value which can either be true or false. A boolean condition is mathematical equation where the result is a boolean (either true or false). Often used in programming.A boolean condition consists of some varibles, and boolean operations that can be carried out using them. Here are some boolean operations. The sybols are those used in Java and C++.> Greater Than. Returns true when the number before > is greater than the number after< Less Than. The opposite of Greater than== Equals. If the values are equal returns trueOR Returns true if the boolean before and/or the boolean after is true&& AND Returns true only if the boolean before AND after the && are true! NOT Inverts/NOT's a boolean. True becomes false. False becomes trueMost programming languages have booleans as a type of variable and if statements as control flow.An if statement uses a boolean to decide whether or not something is run eg.if(someBoolean){// If some boolean is true this peice of code will be run}A an example of a boolean condition could use a less than or greater than symbolif( someNumber > 9000 ) {print( "The number... it's.... OVER 9000!!" );}