answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What is AX squared plus BX plus C 0?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Math & Arithmetic

What is 3x squared plus 6x-3 equals 8 in the form of Ax squared plus Bx plus C equals 0?

It is: 3x2+6x-11 = 0


What is an equation that can be expressed in the form of the equation y equals ax squared plus bx plus c where the variable 'a' is not equal to 0?

The equation ax2 + bx + c = 0, where a != 0 is called quadratic.


Program to subtract two 8 bit numbers using 8086 microprocessor?

I have a code for 16 bit subtraction.. just replace ax by al,bx by bl etc... .code main proc mov ax,@data mov ds,ax lea dx,msg ;printing msg mov ah,09h int 21h mov ax,x ;ax=x(any number) mov bx,y ;bx=y( " ") cmp ax,0 ;jump to l3 if ax is negtive jb l3 cmp bx,0 ;jump to l6 if bx is negative jb l6 cmp ax,bx ;if ax<bx,then jump to l1 jl l1 sub ax,bx ;else normal sub mov diff,ax ;diff=result is stored jmp l2 l1: ;iff (+)ax<(+)bx neg bx ;bx=-bx clc add ax,bx neg ax ;-ans=ans mov diff,ax mov dx,2dh ;print '-' mov ah,02h int 21h jmp l2 l3: ;iff (-)ax neg ax ;-ax=ax cmp bx,0 ;jump to l4 if bx is negative jb l4 clc add ax,bx ;ax=(+)ax+(+)bx mov ax,diff mov dx,2dh ;print '-' mov ah,02h int 21h jmp l2 l4: ;if (-)ax & (-)bx neg bx ;-bx=bx cmp ax,bx ;if ax>bx then jump to l5 jg l5 sub ax,bx ;else ax-bx mov diff,ax mov dx,2dh ;print '-' mov ah,02h int 21h jmp l3 l5: ;if(-)ax>(-)bx xchg ax,bx ;exchange ax and bx sub ax,bx ;ax-bx mov diff,ax ;ans is positive jmp l2 l6: ;iff (-)bx neg bx ;-bx=bx add ax,bx ;ax-(-)bx mov diff,ax ;ans will be positive mov ah,4ch int 21h main endp


What will be the X in terms of a and b if Cos aX equals 1 plus bX and a and b are constants?

a = 0, b = 0.


Why quadratic equation called quadratic?

Because it is in the form of ax^2+bx+c=0 Because quadratic means squared hence ax squared + bx +c=0 has a squared number as it's highest term. This is in fact the area of a square of a side "x" is x^2, so every equation having variable with exponent 2 become quadratic equation.

Related questions

What is 3x squared plus 6x-3 equals 8 in the form of Ax squared plus Bx plus C equals 0?

It is: 3x2+6x-11 = 0


What is an equation that can be expressed in the form of the equation y equals ax squared plus bx plus c where the variable 'a' is not equal to 0?

The equation ax2 + bx + c = 0, where a != 0 is called quadratic.


What is a x b x c equals 0?

It's ax squared x bx x c = 0 So (ax x ax) x bx x c = 0 This is the quadratic formula, then you'll move onto the quadratic equation.


Ax plus bx plus c equals 0?

x = -c/(a+b), provided a+b is not 0


Write a program to subtract two 16 bit numbers in microprocessor 8086?

.code main proc mov ax,@data mov ds,ax lea dx,msg ;printing msg mov ah,09h int 21h mov ax,x ;ax=x mov bx,y ;bx=y cmp ax,0 ;jump to l3 if ax is negtive jb l3 cmp bx,0 ;jump to l6 if bx is negative jb l6 cmp ax,bx ;if ax<bx,then jump to l1 jl l1 sub ax,bx ;else normal sub mov diff,ax ;diff=result is stored jmp l2 l1: ;iff (+)ax<(+)bx neg bx ;bx=-bx clc add ax,bx neg ax ;-ans=ans mov diff,ax mov dx,2dh ;print '-' mov ah,02h int 21h jmp l2 l3: ;iff (-)ax neg ax ;-ax=ax cmp bx,0 ;jump to l4 if bx is negative jb l4 clc add ax,bx ;ax=(+)ax+(+)bx mov ax,diff mov dx,2dh ;print '-' mov ah,02h int 21h jmp l2 l4: ;if (-)ax & (-)bx neg bx ;-bx=bx cmp ax,bx ;if ax>bx then jump to l5 jg l5 sub ax,bx ;else ax-bx mov diff,ax mov dx,2dh ;print '-' mov ah,02h int 21h jmp l3 l5: ;if(-)ax>(-)bx xchg ax,bx ;exchange ax and bx sub ax,bx ;ax-bx mov diff,ax ;ans is positive jmp l2 l6: ;iff (-)bx neg bx ;-bx=bx add ax,bx ;ax-(-)bx mov diff,ax ;ans will be positive mov ah,4ch int 21h main endp


Program to subtract two 8 bit numbers using 8086 microprocessor?

I have a code for 16 bit subtraction.. just replace ax by al,bx by bl etc... .code main proc mov ax,@data mov ds,ax lea dx,msg ;printing msg mov ah,09h int 21h mov ax,x ;ax=x(any number) mov bx,y ;bx=y( " ") cmp ax,0 ;jump to l3 if ax is negtive jb l3 cmp bx,0 ;jump to l6 if bx is negative jb l6 cmp ax,bx ;if ax<bx,then jump to l1 jl l1 sub ax,bx ;else normal sub mov diff,ax ;diff=result is stored jmp l2 l1: ;iff (+)ax<(+)bx neg bx ;bx=-bx clc add ax,bx neg ax ;-ans=ans mov diff,ax mov dx,2dh ;print '-' mov ah,02h int 21h jmp l2 l3: ;iff (-)ax neg ax ;-ax=ax cmp bx,0 ;jump to l4 if bx is negative jb l4 clc add ax,bx ;ax=(+)ax+(+)bx mov ax,diff mov dx,2dh ;print '-' mov ah,02h int 21h jmp l2 l4: ;if (-)ax & (-)bx neg bx ;-bx=bx cmp ax,bx ;if ax>bx then jump to l5 jg l5 sub ax,bx ;else ax-bx mov diff,ax mov dx,2dh ;print '-' mov ah,02h int 21h jmp l3 l5: ;if(-)ax>(-)bx xchg ax,bx ;exchange ax and bx sub ax,bx ;ax-bx mov diff,ax ;ans is positive jmp l2 l6: ;iff (-)bx neg bx ;-bx=bx add ax,bx ;ax-(-)bx mov diff,ax ;ans will be positive mov ah,4ch int 21h main endp


What will be the X in terms of a and b if Cos aX equals 1 plus bX and a and b are constants?

a = 0, b = 0.


Why quadratic equation called quadratic?

Because it is in the form of ax^2+bx+c=0 Because quadratic means squared hence ax squared + bx +c=0 has a squared number as it's highest term. This is in fact the area of a square of a side "x" is x^2, so every equation having variable with exponent 2 become quadratic equation.


What is an Quadratic in form?

Ax^2 + bx + c = 0


Ax2 bx c0?

ax^2+bx+c=0 is the standard form of a quadratic function.


If a equals positive and b equals negative and c equals zero how many solutions does a Quadratic Equation have?

Two: one is 0, the other is -b/a ax2 + bx + c = 0, but c = 0 ⇒ ax2 + bx + 0 = 0 ⇒ ax2 + bx = 0 ⇒ x(ax + b) = 0 ⇒ x = 0 or (ax + b) = 0 ⇒ x = -b/a


What is standard the form of a quadratic equation?

Ax 2+Bx+c=0