1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
sineoko [7]
2 years ago
14

Question 1: Final Results = What are the values of the resistances such that the gain = -100, Rin = 1 MI2. Don't use resistances

greater than 1 M2.
is this question wrong??? me and mh freinds are trying to figure oyt the answer for 3 days but we can't ​
Engineering
1 answer:
lidiya [134]2 years ago
4 0

Answer:

Explanation:

In a study of algebra, you will encounter many families of equations, or groups of

equations that share common characteristics. Of interest to us here is the family of

linear equations in one variable, a study that lays the foundation for understanding

more advanced families. In addition to solving linear equations, we’ll use the skills we

develop to solve for a specified variable in a formula, a practice widely used in science,

business, industry, and research.

A. Solving Linear Equations Using Properties of Equality

An equation is a statement that two expressions are

equal. From the expressions and

we can form the equation

which is a linear equation in one variable. To solve

an equation, we attempt to find a specific input or xvalue that will make the equation true, meaning the

left-hand expression will be equal to the right. Using

Table 1.1, we find that is a

true equation when x is replaced by 2, and is a false

equation otherwise. Replacement values that make

the equation true are called solutions or roots of the equation.

You might be interested in
cThe Mars Rover Spirit got stuck in the Martian sand. The wheels kept slipping. Attempts to free it were futile. Discuss the typ
IgorC [24]

Answer:

Improved/ advanced types of Actuators include servo systems, create a large range of actuator motion in response to the changing needs of the operational environment or process.

Actuators are local or automated suppliers of working motion.

Hydraulic and air cylinders can be classified as single-acting cylinders, meaning that the energy source result in movement in one direction and a spring is used for the other direction.

Explanation:

An actuator control system is referred to as any electronic, electrical, or electromechanical system often used to activate an actuator, control the direction as well as extent and duration of its output. Actuator control systems could take the form of extremely simple, manually-operated, start-and-stop stations, either sophisticated or programmable computer systems. The more improved/ advanced types include servo systems that produce a large range of actuator motion in response to the changing needs of the operational environment or process. This type of actuator control system uses an interface arrangement that assimilates feedback from the process or mechanism and adjusts the actuator in the right way. Most actuator systems will include at least a set of travel limits that prevent the actuator destroying itself or the secondary mechanism.

Actuators are local or automated suppliers of working motion. They are used to changes, adjust, or move a secondary mechanism, where a physical operator cannot intervene directly. They are denoted by a large range of varying types using electrical and electromagnetic, hydraulic, or pneumatic power sources to create linear or rotary outputs. One element they all have in common is the actuator control system used to start, stop, and adjust the range, speed, and duration of the working motion.

Actuators can produce a linear motion, rotary motion or oscillatory motion which means they can create motion in one direction, in a circular motion or in opposite directions at regular intervals. Hydraulic and air cylinders can be classified as single-acting cylinders, meaning that the energy source result in movement in one direction and a spring is used for the other direction.

7 0
3 years ago
Consider laminar, fully developed flow in a channel of constant surface temperature Ts. For a given mass flow rate and channel l
Pachacha [2.7K]

Answer:

Please see attachment.

Explanation:

8 0
3 years ago
What type of bridge is the sunshine skyway bridge?
sdas [7]

Answer:

That's either a cable-stayed bridge or a cantilever bridge

6 0
3 years ago
You are recording a friend's 3-minute song with 24 bits per sample at 96 kHz sampling rate for a 5.1 surround sound system (6 ch
djyliett [7]

Answer:

save space = 1.9626 Gibibits

Explanation:

given data

recording song time = 3 minute = 180 seconds

song per sample =  24 bits per sample

frequency = 96 kHz

surround sound system = 5.1

solution

first we get here required space for 24 bits at  96 kHz that is

required space = 24 × 96 × 10³ × 6 × 180

required space = 2.48832 × 10^{9}  bits

as 1 Gib bit = 2^{30} bits

so required space = 2.48832 × 10^{9}  bits ÷  2^{30} bits

required space = 2.3174 Gibibits   ...............1

and

space required to save record 16 bit at 44.1 kHz

space required = 16 × 44.1 × 10³ × 3 × 180

space required = 0.381024 × 10^{9}  bits

space required = 0.381024 × 10^{9}  bits  ÷  2^{30} bits  

space required = 0.3548 Gibibits    ...........2

so

we get here that save space in 16 bit at 44.1 kHz

save space = 2.3174 Gibibit - 0.3548 Gibibits

save space = 1.9626 Gibibits

8 0
3 years ago
java Your program class should be called RomanNumerals Write a program that asks the user to enter a number within the range of
Ann [662]

Answer:

// Scanner class is imported to allow program

// receive input

import java.util.Scanner;

// RomanNumerals class is defined

public class RomanNumerals {

   // main method that signify beginning of program execution

   public static void main(String args[]) {

       // Scanner object scan is created

       // it receive input via keyboard

       Scanner scan = new Scanner(System.in);

       // Prompt is display asking the user to enter number

       System.out.println("Enter your number: ");

       // the user input is stored at numberOfOrder

       int number = scan.nextInt();

     

           // switch statement which takes number as argument

           // the switch statement output the correct roman numeral

           // depending on user input

          switch(number){

           case 1:

               System.out.println("I");

               break;

           case 2:

               System.out.println("II");

               break;

           case 3:

               System.out.println("III");

               break;

           case 4:

               System.out.println("IV");

               break;

           case 5:

               System.out.println("V");

               break;

           case 6:

               System.out.println("VI");

               break;

           case 7:

               System.out.println("VII");

               break;

           case 8:

               System.out.println("VIII");

               break;

           case 9:

               System.out.println("IX");

               break;

           case 10:

               System.out.println("X");

               break;

           // this part is executed if user input is not between 1 to 10

           default:

               System.out.println("Error. Number must be between 1 - 10.");

     }

   }

}

Explanation:

The program is well commented. A sample image of program output is attached.

The switch statement takes the user input (number) as argument as it goes through each case block in the switch statement and match with the corresponding case to output the roman version of that number. If the number is greater 10 or less than 1; the default block is executed and it display an error message telling the user that number must be between 1 - 10.

6 0
3 years ago
Read 2 more answers
Other questions:
  • A. For a 200g load acting vertically downwards at point B’, determine the axial load in members A’B’, B’C’, B’D’, C’D’ and C’E’.
    8·1 answer
  • If you are in a tornado situation, which of the following actions would put you in danger?
    11·1 answer
  • Is normally a large red cable connected to the battery
    11·2 answers
  • Quinn’s relatives relayed a story about putting on a headset and seeing a digital world that they could walk around in and explo
    8·2 answers
  • On the position time curve, if the slope of a tangent at a point is positive, that means:
    6·2 answers
  • Air is compressed steadily from 100kPa and 20oC to 1MPa by an adiabatic compressor. If the mass flow rate of the air is 1kg/s an
    12·1 answer
  • What Number Am I?
    13·1 answer
  • What can be used to measure the alcohol content in gasoline? A. Graduated cylinder B. Electronic tester C. Scan tool D. Either a
    5·1 answer
  • The controller determines if a(n) _________ exists by calculating the difference between the SP and the PV.
    6·1 answer
  • In an ungrounded electrical systems with conductors installed in grounded metal raceways and enclosures, what is the voltage fro
    9·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!