Does the numerical expression of (2x4)+(3x3) have a value of 33?

1 Answer

Answer :

172x4=8+(3x3)=173x3=99+8=17

Related questions

Description : The refractive index is 2.33 and the critical angle is 350. Find the numerical aperture. a) 2 b) 1.9 c) 2.33 d) 12

Last Answer : b) 1.9

Description : The numerical aperture of a coaxial cable with core and cladding indices given by 2.33 and 1.4 respectively is a) 3.73 b) 0.83 c) 3.46 d) 1.86

Last Answer : d) 1.86

Description : Find the value of the polynomial 3x3 – 4x2 + 7x – 5, when x = 3 and also when x = -3. -Maths 9th

Last Answer : Let p(x) =3x3 – 4x2 + 7x – 5 At x= 3, p(3) = 3(3)3 – 4(3)2 + 7(3) – 5 = 3×27-4×9 + 21-5 = 81-36+21-5 P( 3) =61 At x = -3, p(-3)= 3(-3)3 – 4(-3)2 + 7(-3)- 5 = 3(-27)-4×9-21-5 = -81-36-21-5 = -143 p(-3) = -143 Hence, the value of the given polynomial at x = 3 and x = -3 are 61 and -143, respectively.

Description : Find the value of the polynomial 3x3 – 4x2 + 7x – 5, when x = 3 and also when x = -3. -Maths 9th

Last Answer : Let p(x) =3x3 – 4x2 + 7x – 5 At x= 3, p(3) = 3(3)3 – 4(3)2 + 7(3) – 5 = 3×27-4×9 + 21-5 = 81-36+21-5 P( 3) =61 At x = -3, p(-3)= 3(-3)3 – 4(-3)2 + 7(-3)- 5 = 3(-27)-4×9-21-5 = -81-36-21-5 = -143 p(-3) = -143 Hence, the value of the given polynomial at x = 3 and x = -3 are 61 and -143, respectively.

Description : what is the whole numerical expression for 22 plus 14

Last Answer : 22+14=36 B-)

Description : 27. The mathematical model of an LP problem is important because a. It helps in converting the verbal description & numerical data into mathematical expression b. Decision-makers prefer to ... captures the relevant relationship among decision factors d. It enables the use of algebraic technique

Last Answer : a. It helps in converting the verbal description & numerical data into mathematical expression

Description : What can I build with some leftover 2'x4' boards?

Last Answer : answer:A tree house? Any small children in your life or nearby? Or for something more modest yet still charming? Broccoli house

Description : How did standard 2x4 wall stud length become eight feet?

Last Answer : answer:Fascinating question! I've taken a couple of building inspection classes and we went over all the minutiae of what the measurements were, but very little on why they were that way. Of course, the ... of most common 48 sheet goods. No one seems to have settled on a correct answer, though!

Description : Without actual division, prove that 2x4 – 5x3 + 2x2 – x+ 2 is divisible by x2-3x+2. -Maths 9th

Last Answer : Let p(x) = 2x4 - 5x3 + 2x2 - x+ 2 firstly, factorise x2-3x+2. Now, x2-3x+2 = x2-2x-x+2 [by splitting middle term] = x(x-2)-1 (x-2)= (x-1)(x-2) Hence, 0 of x2-3x+2 are land 2. We have to prove that, 2x4 ... )2 - 2 + 2 = 2x16-5x8+2x4+ 0 = 32 - 40 + 8 = 40 - 40 =0 Hence, p(x) is divisible by x2-3x+2.

Description : Without actual division, prove that 2x4 – 5x3 + 2x2 – x+ 2 is divisible by x2-3x+2. -Maths 9th

Last Answer : Let p(x) = 2x4 - 5x3 + 2x2 - x+ 2 firstly, factorise x2-3x+2. Now, x2-3x+2 = x2-2x-x+2 [by splitting middle term] = x(x-2)-1 (x-2)= (x-1)(x-2) Hence, 0 of x2-3x+2 are land 2. We have to prove that, 2x4 ... )2 - 2 + 2 = 2x16-5x8+2x4+ 0 = 32 - 40 + 8 = 40 - 40 =0 Hence, p(x) is divisible by x2-3x+2.

Description : What is the quotient when the polynomial 2x4 minus 9x3 plus 13x2 minus 15x plus 9 is divided by the polynomial x minus 3?

Last Answer : 2x^3 - 3x^2 + 4x - 3

Description : x4+3x3+3x2+x+1 -Maths 9th

Last Answer : Solution: Let p(x)= x4+3x3+3x2+x+1 The zero of x+1 is -1. p(−1)=(−1)4+3(−1)3+3(−1)2+(−1)+1 =1−3+3−1+1 =1 ≠ 0 ∴By factor theorem, x+1 is not a factor of x4+3x3+3x2+x+1

Description : 3. Check whether 7+3x is a factor of 3x3+7x. -Maths 9th

Last Answer : Solution: 7+3x = 0 ⇒ 3x = −7 ⇒ x = -7/3 ∴Remainder: 3(-7/3)3+7(-7/3) = -(343/9)+(-49/3) = (-343-(49)3)/9 = (-343-147)/9 = -490/9 ≠ 0 ∴7+3x is not a factor of 3x3+7x

Description : Write a Numpy program to create a 3x3 identity matrix, i.e. diagonal elements are 1, the rest are 0. Replace all 0 to random number from 10 to 20 -Technology

Last Answer : import numpy as nparray1=np.identity(3)print(array1)x=np.where(array1==0)for i in x:array1[x]=np.random.randint(low=10,high=20)print(array1)

Description : Write a Numpy program to create a 3x3 identity matrix, i.e. non diagonal elements are 1, the rest are 0. Replace all 0 to random number from 1 to 10 -Technology

Last Answer : import numpy as npZ = np.arange(9).reshape(3,3)print (Z)x=np.where((Z%2)==0)for i in x:Z[x]=np.random.randint(low=10,high=20)print(Z)

Description : What is the exponential form of 3x3?

Last Answer : 3^2

Description : What size rectangular floor can be completely covered by using 3x3 ft tiles or 5x5 ft tiles you cant cut tiles or combine them?

Last Answer : A 3 x 5 rectangle.

Description : What size rectangular floor can be completely covered by using 3x3 ft tiles or 5x5 ft tiles you cant cut tiles or combine them?

Last Answer : A 3 x 5 rectangle.

Description : 3X3 inverse of matrix short trick

Last Answer : 3X3 inverse of matrix short trick

Description : Finite element analysis deals with . a.approximate numerical solution b.non-boundary value problems c.Laplace equations d.All of the above

Last Answer : a.approximate numerical solution

Description : What is information from an experiment such as observations or behaviors that cannot be recorded with a numerical value.?

Last Answer : Qualitative Data

Description : The 'dielectric constant' is a numerical value indicating the effectiveness of a dielectric material in comparison to that of a standard, which is _______________. A. paper or cloth B. glass or mica C. plastic or Teflon D. dry air or a vacuum

Last Answer : Answer: D

Description : Who can teach me how to find the Volume number and Issue number of “Numerical simulation of three dimensional cavitation shedding dynamics with special emphasis on cavitation–vortex interaction”?

Last Answer : Google it. \ http://www.sciencedirect.com/science/article/pii/S0029801814001838

Description : Names with numerical suffixes, what's the Highest name ordinal suffix you know of.

Last Answer : answer:I believe that it's customary to change the suffix when an elder passes away. For example, if a family has Sr., Jr., and III, I think that everyone moves up a notch when grandpa dies. Jr ... this is done, there's not much opportunity to get beyond IV or V. The older generations would be gone.

Description : How do you memorise short numerical sequences?

Last Answer : We had the same when I worked at an Apple Premium Reseller, for example 24690 was a iPod Usb Cable. The way I learned them all was that we had written them down on small labels on the register. It took time, but i learned the most important ones eventually.

Description : What is the connotation or origin of using the numerical symbols we use for our English numbering system? of using the?

Last Answer : They are actually the Arabic numerals. More here

Description : Final Cut Studio 2 Numerical Pad?

Last Answer : answer:Entering SMPTE time code, or any numerical data; and Nudging region clips using the +/- keys just above the Enter Key. I'm on my iPhone but suggest you can google final cut keyboard shortcuts ... you can find at most pro video retailers (B&H, full compass, etc.). They're wired though FYI.

Description : The machine tool, in which calculation and setting of the operating conditions like depth ofcut, feed, speed are done during the machining by the control system itself, is called a.Computer Numerical Control System b.Direct Numerical Control System c.Machining Center System d.Adaptive Control System

Last Answer : d.Adaptive Control System

Description : Numerical control a.applies only to milling machines b.is a method for producing exact number of parts per hour c.is a method for controlling by means of set of instructions d.None of the mentioned

Last Answer : c.is a method for controlling by means of set of instructions

Description : The velocity-time graph shows the motion of a cyclist. Find (i) its acceleration (ii) its velocity (iii) the distance covered by the cyclist in 15 seconds Numerical Questions and answers on Motion for Class 9 physics -Science

Last Answer : (i) We can see from the graph that velocity is not changing So,acceleration is equal to zero. (ii) By Reading the graph, velocity = 20 m/s (iii) Distance covered in 15 seconds, s=u×t=20×15=300s=u×t=20×15=300 m

Description : Numerical Questions and answers on Motion for Class 9 physics a. What is the distance travelled by the SUV is first 2 seconds? b. What is the braking force at the end of 5 seconds to bring the SUV to a stop within one seconds? -Science

Last Answer : a. The distance travelled by the SUV is first 2 seconds = Area of ΔABEΔABE =12 AE BE=12 AE BE =12 2 15=15m=12 2 15=15m b. Acceleration will be given by the slope of the line CD a=0−156−5= ... =−15m/s2 Now mass of the SUV =1000 Kg Braking Force will be F=ma=1000 −15=−15000NF=ma=1000 −15=−15000N

Description : It is responsible for all numerical and logical calculations. (a) CPU (b) CU (c) MU (d) ALU -Technology

Last Answer : (d) ALU is a digital circuit in which numerical and logical operations are defined.

Description : Python : Convert categorical labels (character) to numerical labels -Web-Development

Last Answer : answer:

Description : What is numerical taxonomy? -Biology

Last Answer : answer:

Description : How many types of numerical words ? What are the keys ?

Last Answer : 4 types of numeral words- 1. Numeric number 2. Quantity or computational number 3. Order or integer 4. Dated numbers

Description : What is numerical integration ?

Last Answer : : Numerical integration or numerical addition or numerical aggregation or numerical aggregation is a large family of algorithms for calculating the numerical value of a definite integral. Adding a little more, ... the domain of the integration is limited, many solutions to the integral can be found.

Last Answer : In the plan Numerical Publishers ' budget Say '

Description : Statistical table is the systematic arrangement of numerical data presented in rows and columns. What are the rules to be followed while constructing such a table?

Last Answer : Statistical table is the systematic arrangement of numerical data presented in rows and columns. ... be followed while constructing such a table?

Description : What is numerical taxonomy? Who proposed it?

Last Answer : What is numerical taxonomy? Who proposed it?

Description : Write a short note on numerical taxonomy.

Last Answer : Write a short note on numerical taxonomy.

Description : Is A frequency of distribution is a way to describe numerical data categorically?

Last Answer : Need answer

Description : What is the numerical smaller whole number in each element square?

Last Answer : Feel Free to Answer

Description : What is the Numerical values in scientific notation 230000000000?

Last Answer : Feel Free to Answer

Description : Which type of graph displays data with bars that represent numerical amounts?

Last Answer : bar

Description : What tool is used to provide a lot of numerical information in a very area?

Last Answer : data table

Description : The commonly used standard data code to represent alphabetical, numerical and punctuation characters used in electronic data processing system is called A) ASCII B) EBCDIC C) BCD D) All of above

Last Answer : Answer : D

Description : The most commonly used standard data code to represent alphabetical, numerical and punctuation characters used in electronic data processing system is called A) ASCII B) EBCDIC C) BCD D) All of above

Last Answer : Answer : A

Description : Printer resolution is a numerical measure of print quality that is measured in _______ A. Pages Per Minute (PPM) B. Lines Per Minute (LPM) C. Characters Per Second (CPS) D. Dots Per Inch (DPI)

Last Answer : D. Dots Per Inch (DPI)

Description : Which of the following device is used to enter the text and numerical data in a computer? A. Plotter B. Scanner C. Printer D. Keyboard

Last Answer : D. Keyboard

Description : The seven segment arrangement for numerical display on consoles, test meters and other applications can be either ________________. A. UJT or BJT B. BCD or OCD C. JFET or IGFET D. LED or LCD

Last Answer : Answer: D