answersLogoWhite

0


Best Answer

There are infinitely many possible answers. Some examples:

  1. Output = 8 (whatever the input): this is the SIMPLEST rule.
  2. Output = (Input)3
  3. Output = (Input + 1)2 - 1
  4. Output = Input*4
  5. Output = Input + 6
  6. Output = 2*(Input + 2)
User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the rule if the input is 2 and the output is 8?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is The output is eight less than the input function rule?

f(x) = x - 8.


Why is multiplying the Input by 2 is the same as dividing the Output by 2?

It is not. Suppose the function is "add 7".Then an input of 1 gives an output of 1+7 = 8.Double the input to 2 and the output is 2+7 = 9Whereas simply halving the output gives 9/2 = 4.5So the question is based on false premises.


What is the pin diagram of Integrated Chip L293D?

L293D is having 20 pin IC and also 16 pin IC. description of 20 pin is: 1-enable 1 2- input 1 3- output 1 4,5,6,7,14,15,16,17- ground 8- output 2 9- input 2 10,20-vs 11-enable 2 12- input 3 13-output 3 18-output 4 19-input 4 description for 18 pin: 1-enable 1 2- input 1 3- output 1 4,5,12,13- ground 6-output 2 7- input 2 8,18-vs 9-enable 2 10-input 3 11-output 3 14-output 4 15-input 4


What are the applications of IC 74147?

This is a priority encoder. When the individual input lines are driven low, this chip outputs the index number of the highest-numbered input line that is low, in binary-encoded form, on its four output lines. If inputs 2 and 6 are both low, the output is 6 (1010). If 6 and 8 are both low, the output is 8. If 2, 6, and 8 are low, the output is 8. And so on.


What is an input value?

An input value is the value that you start with. If it helps, you can think of an input value as being a value you type in. So, for instance, if you type 8 * 2 into your calculator, then that's the input. This is contrasted with output, which is the value returned to you by the computer program. In our example, the output would be 16.


What is the pin configuration of ic 74266?

this shows you everything you need about them Pin Number Description 1 A Input Gate 1 2 B Input Gate 1 3 Y Output Gate 1 4 A Input Gate 2 5 B Input Gate 2 6 Y Output Gate 2 7 Ground 8 Y Output Gate 3 9 B Input Gate 3 10 A Input Gate 3 11 Y Output Gate 4 12 B Input Gate 4 13 A Input Gate 4 14 Positive Supply


How IC 7402 can be connected to use NOR gate?

IC 7402 is different from the other type of IC like 7404,7408,7432 and 7400 when it is connected to have an output desired... if you noticed all i mentioned ic is connected from left to the right. input pin 1 and 2, output pin 3 input pin 4 and 5, output pin 6 input pin 13 and 12, output pin 11 input pin 10 and 9, output pin 8 while in nor gate, to have the desired output it must be connected from right to left... input pin 2 and 3, output pin 1 input pin 5 and 6, output pin 4 input pin 8 and 9, output pin 10 input pin 11 and 12, output pin 13


Square and cube calculation C language?

you make a function yourself For example : int cube (int input); int main (void) { int x = 2; printf(x is %d\n",x); x = cube (x); printf("x is %d\n",x); return 0; } int cube (int input) { int output = input * input *input ; return output; } the output will be : x is 2 x is 8


What is the mechanical efficieny of a machine that produces 400 joules of work output from a work input of 500 joulesd?

.8 or 80%i.e. The output is 80% of the input.


Name 8 ports connectors which are used for input and output devices?

SerialParallelUSBFirewireEtherneteSATAPCIAGP


What is the answer Here are two number machines 1- X x 5 - 4 and 2- X x 3 plus 8. both machines have the same input that makes the output of A three times bigger the output of B work out the the input?

It is -7.


Example on how to convert octal to binary?

input: 76543210(8) output: 111 110 101 100 011 010 001 000(2)