Final answer:
A Python program to calculate the equal monthly instalment (EMI) for Bank Muscat's Al Jawhara account type checks if the account qualifies, then computes the EMI using the given loan details and the EMI formula.
Step-by-step explanation:
The following Python program reads in all the necessary inputs to calculate the equal monthly instalment (EMI) of a loan for Bank Muscat's Al Jawhara account holders. The program first checks if the provided account number ends with two letters, identifying it as an Al Jawhara account. If the account is indeed Al Jawhara, the program then calculates the EMI using the formula:
EMI = P * r * (1 + r)^n / ((1 + r)^n - 1)
Where:
The program takes the amount of the loan, the annual interest rate, and the number of years for the loan from the user. The annual interest rate is converted to the monthly interest by dividing it by 12 and converting it into a percentage (dividing by 100).
After computation, it outputs the calculated EMI value for Al Jawhara account holders. Here is a sample of the code.
account_number = input('Enter Al Jawhara account number: ')
if len(account_number) == 15 and account_number[-2:].isalpha():
P = float(input('Enter the amount of the loan: '))
R = float(input('Enter the annual interest rate: '))
N = int(input('Enter the number of years of the loan: '))
r = R / 12 / 100
n = N * 12
EMI = P * r * (1 + r) ** n / ((1 + r) ** n - 1)
print(f'The equal monthly installment is: {EMI}')
else:
print('Account number is not valid for an Al Jawhara customer.')