# Données logiciel python
pondérations = {
"France": 0.55,
"Japon": 0.10,
"Allemagne": 0.10,
"États-Unis": 0.09,
"Italie": 0.07,
"Royaume-Uni": 0.05,
"Sénégal": 0.04
}
ipc_1993 = {
"Côte d'Ivoire": 109.3,
"France": 108.5,
"Japon": 106.5,
"États-Unis": 111.6,
"Allemagne": 113.2,
"Italie": 118.7,
"Royaume-Uni": 112.5,
"Sénégal": 98.1
}
ipc_1994 = {
"Côte d'Ivoire": 139.9,
"France": 110.2,
"Japon": 107.2,
"États-Unis": 114.6,
"Allemagne": 116.3,
"Italie": 124.0,
"Royaume-Uni": 115.8,
"Sénégal": 128.5
}
taux_change_1993 = {
"FCFA/USD": 294.78,
"USD/FRF": 5.89,
"USD/JPY": 111.85,
"USD/DEM": 1.72,
"USD/ITL": 2340,
"USD/GBP": 0.68,
"FCFA/SEN": 1
}
taux_change_1994 = {
"FCFA/USD": 534.60,
"USD/FRF": 5.34,
"USD/JPY": 99.74,
"USD/DEM": 1.54,
"USD/ITL": 2379,
"USD/GBP": 0.64,
"FCFA/SEN": 1
}
# Conversion des taux de change en termes de FCFA/monnaie partenaire
taux_change_1993_fcfa = {
"France": taux_change_1993["FCFA/USD"] / taux_change_1993["USD/FRF"],
"Japon": taux_change_1993["FCFA/USD"] / taux_change_1993["USD/JPY"],
"Allemagne": taux_change_1993["FCFA/USD"] / taux_change_1993["USD/DEM"],
"États-Unis": taux_change_1993["FCFA/USD"],
"Italie": taux_change_1993["FCFA/USD"] / taux_change_1993["USD/ITL"],
"Royaume-Uni": taux_change_1993["FCFA/USD"] / taux_change_1993["USD/GBP"],
"Sénégal": taux_change_1993["FCFA/SEN"]
}
taux_change_1994_fcfa = {
"France": taux_change_1994["FCFA/USD"] / taux_change_1994["USD/FRF"],
"Japon": taux_change_1994["FCFA/USD"] / taux_change_1994["USD/JPY"],
"Allemagne": taux_change_1994["FCFA/USD"] / taux_change_1994["USD/DEM"],
tats-Unis": taux_change_1994["FCFA/USD"],
"Italie": taux_change_1994["FCFA/USD"] / taux_change_1994["USD/ITL"],
"Royaume-Uni": taux_change_1994["FCFA/USD"] / taux_change_1994["USD/GBP"],
"Sénégal": taux_change_1994["FCFA/SEN"]
}
# Calcul du TCER pour 1993 et 1994
tcer_1993 = sum(pondérations[pays] * (taux_change_1993_fcfa[pays] * ipc_1993[pays] /
ipc_1993["Côte d'Ivoire"]) for pays in pondérations)
tcer_1994 = sum(pondérations[pays] * (taux_change_1994_fcfa[pays] * ipc_1994[pays] /
ipc_1994["Côte d'Ivoire"]) for pays in pondérations)
tcer_1993, tcer_1994
# Définition des données logiciel r
pondérations <- c(France = 0.55, Japon = 0.10, Allemagne = 0.10, États_Unis = 0.09, Italie = 0.07,
Royaume_Uni = 0.05, Sénégal = 0.04)
ipc_1993 <- c(Cote_Ivoire = 109.3, France = 108.5, Japon = 106.5, États_Unis = 111.6, Allemagne = 113.2,
Italie = 118.7, Royaume_Uni = 112.5, Sénégal = 98.1)
ipc_1994 <- c(Cote_Ivoire = 139.9, France = 110.2, Japon = 107.2, États_Unis = 114.6, Allemagne = 116.3,
Italie = 124.0, Royaume_Uni = 115.8, Sénégal = 128.5)
taux_change_1993 <- c(FCFA_USD = 294.78, USD_FRF = 5.89, USD_JPY = 111.85, USD_DEM = 1.72,
USD_ITL = 2340, USD_GBP = 0.68, FCFA_SEN = 1)
taux_change_1994 <- c(FCFA_USD = 534.60, USD_FRF = 5.34, USD_JPY = 99.74, USD_DEM = 1.54,
USD_ITL = 2379, USD_GBP = 0.64, FCFA_SEN = 1)
# Conversion des taux de change en termes de FCFA/monnaie partenaire
taux_change_1993_fcfa <- c(
France = taux_change_1993["FCFA_USD"] / taux_change_1993["USD_FRF"],
Japon = taux_change_1993["FCFA_USD"] / taux_change_1993["USD_JPY"],
Allemagne = taux_change_1993["FCFA_USD"] / taux_change_1993["USD_DEM"],
États_Unis = taux_change_1993["FCFA_USD"],
Italie = taux_change_1993["FCFA_USD"] / taux_change_1993["USD_ITL"],
Royaume_Uni = taux_change_1993["FCFA_USD"] / taux_change_1993["USD_GBP"],
Sénégal = taux_change_1993["FCFA_SEN"]
)
taux_change_1994_fcfa <- c(
France = taux_change_1994["FCFA_USD"] / taux_change_1994["USD_FRF"],
Japon = taux_change_1994["FCFA_USD"] / taux_change_1994["USD_JPY"],
Allemagne = taux_change_1994["FCFA_USD"] / taux_change_1994["USD_DEM"],
États_Unis = taux_change_1994["FCFA_USD"],
Italie = taux_change_1994["FCFA_USD"] / taux_change_1994["USD_ITL"],
Royaume_Uni = taux_change_1994["FCFA_USD"] / taux_change_1994["USD_GBP"],
Sénégal = taux_change_1994["FCFA_SEN"]
)
# Calcul du TCER pour 1993
tcer_1993 <- sum(sapply(names(pondérations), function(pays) {
pondérations[pays] * (taux_change_1993_fcfa[pays] * ipc_1993[pays] / ipc_1993["Cote_Ivoire"])
}))
# Calcul du TCER pour 1994
tcer_1994 <- sum(sapply(names(pondérations), function(pays) {
pondérations[pays] * (taux_change_1994_fcfa[pays] * ipc_1994[pays] / ipc_1994["Cote_Ivoire"])
}))
# Affichage des résultats
tcer_1993
tcer_1994
Pour calculer le Taux de Change Effectif Réel (TCER) en utilisant Microsoft Excel, nous allons suivre les
étapes suivantes :
1. **Entrer les données** : Pondérations, indices de prix et taux de change pour 1993 et 1994.
2. **Calculer les taux de change bilatéraux en termes de FCFA/monnaie partenaire pour chaque
année**.
3. **Calculer le TCER pour 1993 et 1994**.
### Étape 1 : Entrer les Données
Entrez les données dans une feuille Excel comme suit :
| Partenaire | Pondération | IPC 1993 | IPC 1994 | FCFA/USD 1993 | USD/monnaie partenaire 1993 |
FCFA/USD 1994 | USD/monnaie partenaire 1994 |
|-------------|-------------|----------|----------|---------------|-----------------------------|---------------|---------------------
--------|
| France | 0.55 | 108.5 | 110.2 | 294.78 | 5.89 | 534.60 | 5.34
|
| Japon | 0.10 | 106.5 | 107.2 | 294.78 | 111.85 | 534.60 | 99.74
|
1 / 7 100%
La catégorie de ce document est-elle correcte?
Merci pour votre participation!

Faire une suggestion

Avez-vous trouvé des erreurs dans linterface ou les textes ? Ou savez-vous comment améliorer linterface utilisateur de StudyLib ? Nhésitez pas à envoyer vos suggestions. Cest très important pour nous !