2023 mathorcup question A application thinking analysis of quantum computer in the combination optimization of credit score cards

Application of Quantum Computer in Credit Scorecard Portfolio Optimization for Question A

Get more information at the end of the article

In the bank credit card or related loan business, before granting credit to customers, it is necessary to evaluate the credit rating of customers through various review rules, and the customers who pass the evaluation can obtain credit or loan qualifications. The rule review process is actually to score customers after one or more combined rules. These rules are called credit score cards. Each credit score card has multiple threshold settings (but only one threshold takes effect), which makes Different credit score cards correspond to different pass rates and bad debt rates under different thresholds. Generally, the higher the pass rate, the higher the bad debt rate. Conversely, the lower the pass rate, the lower the bad debt rate.

For banks, the higher the pass rate, the more customers who pass the loan qualification review, and the more interest income the bank will receive. However, a high pass rate generally corresponds to a high bad debt rate, and

Bad debts mean the risk of loss of funds, so the bank's final income can be defined as:

Final Income = Loan Interest Income - Bad Debt Loss

The following table gives an example of 3 different credit score cards, and it can be seen that each credit score card has 10 thresholds

value, each threshold corresponds to a different bad debt rate and pass rate:

credit score card 1 credit score card 2 credit score card 3
threshold Passing rate Bad debt rate threshold Passing rate Bad debt rate threshold Passing rate Bad debt rate
1 5% 0.50% 1 5% 0.50% 1 5% 0.50%
2 10% 1.00% 2 10% 1.00% 2 10% 1.00%
3 25% 1.50% 3 25% 1.50% 3 20% 1.70%
4 30% 2.00% 4 30% 2.00% 4 33% 2.00%
5 40% 2.50% 5 45% 2.50% 5 40% 2.70%
6 50% 3.00% 6 50% 2.70% 6 52% 3.00%
7 60% 3.50% 7 65% 3.50% 7 62% 3.70%
8 70% 4.00% 8 70% 4.00% 8 73% 4.00%
9 80% 4.50% 9 82% 4.70% 9 82% 4.70%
10 93% 5.00% 10 90% 5.00% 10 95% 5.00%

Description of the competition *1* : process simplification and examples

Due to the complexity of the banking scene, it is often necessary to select a combination of multiple different credit score cards to achieve the best risk control strategy. The actual combination of credit score cards is a very complicated process. For the convenience of modeling, we simplify the problem as follows (this simplification is only applicable to the questions of this competition and cannot fully represent the actual scene).

Assume that the loan fund is 1,000,000 yuan, the bank loan interest income rate is 8%, and the three credit score cards listed above are used as the selected credit score card combination to measure the bank's final income.

Since each credit score card has and can only select one threshold, assuming that the threshold of credit score card 1 is set to 8, it can be seen from the table that the corresponding pass rate is 70%, the bad debt rate is 4.00%, and the threshold of credit score card 2 If it is set to 6, the pass rate is 50%, and the bad debt rate is 2.70%. If the threshold of credit score card 3 is set to 7, the pass rate is 62%, and the bad debt rate is 3.70%.

For example, if we choose the triple credit card portfolio strategy, then the three credit card portfolios

The final pass rate is multiplied by the pass rate of all credit score cards, that is:

0.7×0.5×0.62 = 0.217

The total bad debt rate is the average of the bad debt rates corresponding to the three credit score cards, namely:

1/3×(0.04+0.027+0.037) = 0.0367

Based on the above conditions, the interest income of this loan is:

Loan funds × interest income rate × total pass rate × (1-total bad debt rate), that is:

1000000×0.08×(0.7×0.5×0.62) ×(1-1/3×(0.04+0.027+0.037)) =

16758.18 (yuan)

Bad debt losses caused by bad debts are:

Loan funds × total pass rate × total bad debt rate, namely:

1000000×(0.7×0.5×0.62)×(1/3×(0.04+0.027+0.037))=7522.666 (yuan) Then the final income of the bank is:

Loan interest income - bad debt loss, namely

16758.18-7522.666 = 9235.514 (yuan)

It can be seen that choosing different credit score cards and different threshold combinations will bring different income and losses to the bank, thus determining the final income of the bank. Therefore, the goal of the bank is to choose the most reasonable combination of credit score cards and its threshold value, so that the bank can finally earn the most money.

Description of the competition *2* : Introduction to the *QUBO* model

The QUBO model refers to the quadratic unconstrained binary optimization (Quadratic Unconstrained Binary Optimization) model, which is a mathematical model for solving combinatorial optimization problems. In the QUBO model, the problem needs to be converted into a decision variable as a binary variable, and the objective function is an optimization model in the form of a quadratic function.

The QUBO model can run on quantum computer hardware, and the quantum computer can be used to accelerate the solution in milliseconds. This model and acceleration method will be widely used in various industries in the future. Therefore, it is very valuable to study the quantum special algorithm based on the QUBO model at this stage. For example, typical graph coloring, traveling salesman problem, vehicle routing optimization problem, etc., can be transformed into QUBO model and solved with the help of quantum computer.

For related QUBO transformation methods and examples, please refer to the references in Appendix 2.

Description of the competition problem *3* : data of the competition problem

Attachment 1 contains a total of 100 credit score cards, each of which can be set with one of 10 thresholds, and

There are 200 columns corresponding to their pass rate and bad debt rate, among which t_ 1 represents the pass rate of credit score card 1, a total of 10 items, h_ 1 represents the bad debt rate of credit score card 1, a total of 10 items, and so on, t_ 100 represents credit score card 100 h_100 represents the bad debt rate of credit score card 100.

According to the description of the above competition questions and the data in Appendix 1, please your team to complete the following questions 1 to 3 by building a mathematical model.

Question *1* : Find one of the 100 credit score cards and its corresponding threshold to maximize the final income. Please model this problem, convert the model to QUBO form and solve it.

Question *2* : Assuming that the game description 3 has selected the three rules of credit score card 1, credit score card 2 and credit score card 3 given in the data set, how to set their corresponding thresholds to maximize the final income , please model the problem, convert the model into QUBO form and solve it.

Question *3* : Select 3 credit score cards from the 100 credit score cards in the given appendix, and set a reasonable threshold to maximize the final income. Please model this problem and convert the model to QUBO form and solve.

Guess you like

Origin blog.csdn.net/qq_43475285/article/details/130121566