answersLogoWhite

0

The GCF of ba and b is b. That factors to b(a - 1)

User Avatar

Wiki User

9y ago

What else can I help you with?

Related Questions

What are the keyboard notes for a team?

a a a a a b a ba ba b#


What is the a team keyboard notes?

a a a a a b a ba ba b#


What is the GCF of b2 and b?

Answer: GCF= b


Solution of compilers principles techniques and tools?

Describe the languages denoted by the following regular expressions: a) a(a|b)*a. b) ((e|a)b*)*. c) (a|b)*a(a|b)(a|b). d) a*ba*ba*ba*. !! e) (aa|bb)*((ab|ba)(aa|bb)*(ab|ba)(aa|bb)*)*.


What is gcd of (ab)(ba)?

The GCF is ab


Can you solve this math problem a ba-bb-a?

If my math works, the solution if you are solving for b is (2a-ba)÷(-b)=b.


What is the GCF of 29 and 87?

GCF of a and b is a if b is divisible by a.87 is divisible by 29 so, GCF(29,87) = 29.


How do you use the greatest common factor subtraction method?

If you have two numbers A and B, and A > B, then GCF(A, B) = (A-B, B) Thus the problem of finding the GCF of A and B has been reduced to finding the GCF of B and a smaller number, A-B. This process can be continued until the two numbers are the same: and that number is the GCF.


What is the GCF of ab and bc?

The GCF is b.


What is the gcf of B an 90?

The GCF is 1.


How do you solve the exercises from the text book compilers principles techniques and tools second edition?

Describe the languages denoted by the following regular expressions:a)a(a|b)*a.b) ((e|a)b*)*.c)(a|b)*a(a|b)(a|b).d)a*ba*ba*ba*.!! e)(aa|bb)*((ab|ba)(aa|bb)*(ab|ba)(aa|bb)*)*


How do you find the LCM and GCF of two no in c?

#include<stdio.h> main() { int a,b,i,lcm,gcf; printf("\n Enter two numbers"); scanf("%d%d",&a,&b); for(i=0;i<=a;i++) { if((b%i==0)&&(a%i==0)) { gcf=i; } } lcm=a*b/gcf; printf("\n GCF is %d and LCM is %d",gcf,lcm); }